You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
303 B
Rust

use thiserror::Error;
pub type TapeResult<T> = Result<T, TapeError>;
#[derive(Debug, Error)]
pub enum TapeError {
#[error("IO Error: {0}")]
TokioIoError(#[from] tokio::io::Error),
#[error("Unexpected EOF")]
EOF,
#[error("Failed to read char at current index")]
IndexError,
}