use std::{error, fmt, io, result};
pub type Result<T> = result::Result<T, Error>;
#[derive(Debug)]
pub enum ParseHexError {
Range {
min: usize,
max: usize,
got: usize,
},
Size {
expect: usize,
actual: usize,
},
Char {
val: char,
},
}
impl fmt::Display for ParseHexError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
ParseHexError::Range {
ref min,
ref max,
ref got,
} => write!(
f,
"expected buff size in `{}...{}`, got `{}`",
min, max, got
),
ParseHexError::Size {
ref expect,
ref actual,
} => write!(f, "expected buff size `{}` got `{}`", expect, actual),
ParseHexError::Char { ref val } => write!(f, "non-hex character `{}`", val),
}
}
}
impl error::Error for ParseHexError {
fn description(&self) -> &str {
match *self {
ParseHexError::Range { .. } => "hexadecimal outside valid range",
ParseHexError::Size { .. } => "invalid hexadecimal size",
ParseHexError::Char { .. } => "non-hex character",
}
}
}
#[derive(Debug)]
pub enum Error {
IoError(io::Error),
Parsing(ParseHexError),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::IoError(ref err) => err.fmt(f),
Error::Parsing(ref err) => err.fmt(f),
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
match *self {
Error::IoError(ref err) => err.description(),
Error::Parsing(ref err) => err.description(),
}
}
fn cause(&self) -> Option<&error::Error> {
match *self {
Error::IoError(ref err) => Some(err),
Error::Parsing(ref err) => Some(err),
}
}
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Self {
Error::IoError(err)
}
}
impl From<ParseHexError> for Error {
fn from(err: ParseHexError) -> Self {
Error::Parsing(err)
}
}