use std::{error, fmt, io, result};
#[derive(Debug)]
pub enum Error {
Io(io::Error),
Parse(String),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Error::Io(err) => err.fmt(f),
Error::Parse(s) => f.write_str(s),
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
match self {
Error::Io(err) => err.description(),
Error::Parse(s) => &s,
}
}
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Self {
Error::Io(err)
}
}
pub type Result<T> = result::Result<T, Error>;