pub enum Level {
Gossip,
Trace,
Debug,
Info,
Warn,
Error,
}
Expand description
An enum representing the available verbosity levels of the logger.
Variants§
Gossip
Designates extremely verbose information, including gossip-induced messages
Trace
Designates very low priority, often extremely verbose, information
Debug
Designates lower priority information
Info
Designates useful information
Warn
Designates hazardous situations
Error
Designates very serious errors
Implementations§
Trait Implementations§
source§impl Ord for Level
impl Ord for Level
source§impl PartialEq for Level
impl PartialEq for Level
source§impl PartialOrd for Level
impl PartialOrd for Level
impl Copy for Level
impl Eq 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