pub enum CritError {
IOError(String),
UnsupportedPathError(String),
PathRenderError(String),
UnknownMimetypeError(String),
RegexParseError(String),
TOMLParseError(String),
}Expand description
CritError models bad computer states.
Variants§
IOError(String)
UnsupportedPathError(String)
PathRenderError(String)
UnknownMimetypeError(String)
RegexParseError(String)
TOMLParseError(String)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CritError
impl RefUnwindSafe for CritError
impl Send for CritError
impl Sync for CritError
impl Unpin for CritError
impl UnwindSafe for CritError
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