#[repr(u8)]pub enum Level {
ERROR = 1,
WARN,
INFO,
DEBUG,
TRACE,
// some variants omitted
}
Expand description
Logging levels
Variants§
ERROR = 1
Designates very serious errors.
WARN
Designates hazardous situations.
INFO
Designates useful information.
DEBUG
Designates lower priority information.
TRACE
Designates very low priority, often extremely verbose, information.
Trait Implementations§
impl Copy for Level
impl Eq 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