#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Error {
NoHome,
NoRuntime,
}
pub type Result<T> = std::result::Result<T, Error>;
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Error::NoHome => write!(f, "could not determine home directory"),
Error::NoRuntime => write!(f, "could not determine runtime directory"),
}
}
}
impl std::error::Error for Error {}