use crate::colour; use std::io; use std::fmt; use std::str; #[derive(Debug)] pub enum Error { Io(io::Error), Confy(confy::ConfyError), Trash(trash::Error), TomlDe(toml::de::Error), TomlSer(toml::ser::Error), Utf8(str::Utf8Error), Generic(String), } impl fmt::Display for Error { fn fmt(&self, f : &mut fmt::Formatter<'_>) -> fmt::Result { match self { Error::Io(err) => write!(f, "{} {}", colour::error("Internal Error:"), err), Error::Confy(err) => write!(f, "{} {}", colour::error("Internal Error:"), err), Error::Trash(err) => write!(f, "{} {}", colour::error("Internal Error:"), err), Error::TomlDe(err) => write!(f, "{} {}", colour::error("Internal Error:"), err), Error::TomlSer(err) => write!(f, "{} {}", colour::error("Internal Error:"), err), Error::Utf8(err) => write!(f, "{} {}", colour::error("Internal Error:"), err), Error::Generic(message) => write!(f, "{}", message), } } } impl From for Error { fn from(err : io::Error) -> Self { Error::Io(err) } } impl From for Error { fn from(err : confy::ConfyError) -> Self { Error::Confy(err) } } impl From for Error { fn from(err : trash::Error) -> Self { Error::Trash(err) } } impl From for Error { fn from(err : toml::de::Error) -> Self { Error::TomlDe(err) } } impl From for Error { fn from(err : toml::ser::Error) -> Self { Error::TomlSer(err) } } impl From for Error { fn from(err : str::Utf8Error) -> Self { Error::Utf8(err) } }