pub enum Level {
Success,
Trace,
Debug,
Info,
Help,
Warn,
Error,
Fatal,
}Expand description
§Level enum.
This enum is used to define the level of the message. The levels are:
Log: Used to log messages.Debug: Used to log debug messages.Warn: Used to log warning messages.Error: Used to log error messages.Success: Used to log success messages.Trace: Used to log trace messages.
Variants§
Trait Implementations§
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