use std::{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 std::error::Error for Error {}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Self {
Error::Io(err)
}
}
pub type Result<T> = result::Result<T, Error>;