pub enum Error {
Io(Error),
Confy(ConfyError),
Sqlite(Error),
Fmt(Error),
Storage,
TwoTimer(TimeError),
TimeNotSupported,
TimeSpanNotSupported,
InvalidUnicode(OsString),
NoDirectory(String),
NoParentDirectory,
}Expand description
Mrot error variants
Variants§
Io(Error)
wraps std::io::Error
Confy(ConfyError)
wraps confy::ConfyError
Sqlite(Error)
wraps sqlite::Error
Fmt(Error)
wraps std::fmt::Error
Storage
when something could not be stored in the storage
TwoTimer(TimeError)
wraps two_timer::TimeError
TimeNotSupported
when a chrono::NaiveDate cannot be converted to chrono::NaiveDateTime
TimeSpanNotSupported
if the user input a time span instead of time
InvalidUnicode(OsString)
when OsString does not contain valid Unicode
NoDirectory(String)
when directories::ProjectDirs is not found
NoParentDirectory
when a path does not have a parent directory
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ConfyError> for Error
impl From<ConfyError> for Error
Source§fn from(value: ConfyError) -> Self
fn from(value: ConfyError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for Error
impl From<Error> for Error
Source§fn from(value: SqliteError) -> Self
fn from(value: SqliteError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more