pub enum Level {
DEBUG,
INFO,
WARN,
ERROR,
FATAL,
NONE,
}
Expand description
The aviable logging levels.
Variants§
DEBUG
For debuging and tracing information.
INFO
For general informations.
WARN
Warning about non critical male behaviour.
ERROR
This is when something went very wrong.
FATAL
The sh*t hits the fan, you possible should run for your live.
NONE
Nothing will be logged.
Trait Implementations§
Source§impl PartialOrd for Level
impl PartialOrd for Level
impl Copy 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