pub enum Level {
Warning = 5,
Info = 7,
Debug = 8,
}Expand description
An enum representing the available verbosity levels of the logger.
Variants§
Warning = 5
The warning level. Designates hazardous situations.
Info = 7
The info level. Designates useful information.
Debug = 8
The debug level. Designates lower priority information and for debugging.
Trait Implementations§
Source§impl PartialOrd for Level
impl PartialOrd for Level
impl StructuralPartialEq for Level
Auto Trait Implementations§
impl Freeze for Level
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin for Level
impl UnwindSafe for Level
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