#[repr(u8)]pub enum Verbosity {
Shutdown = 0,
Critical = 1,
Error = 2,
Warning = 3,
Notice = 4,
Info = 5,
Debug1 = 6,
Debug2 = 7,
Invalid = 255,
Nothing = 254,
}
Variants§
Shutdown = 0
Critical = 1
Error = 2
Warning = 3
Notice = 4
Info = 5
Debug1 = 6
Debug2 = 7
Invalid = 255
Nothing = 254
Implementations§
Trait Implementations§
Source§impl Ord for Verbosity
impl Ord for Verbosity
Source§impl PartialOrd for Verbosity
impl PartialOrd for Verbosity
impl Copy for Verbosity
impl Eq for Verbosity
impl StructuralPartialEq for Verbosity
Auto Trait Implementations§
impl Freeze for Verbosity
impl RefUnwindSafe for Verbosity
impl Send for Verbosity
impl Sync for Verbosity
impl Unpin for Verbosity
impl UnwindSafe for Verbosity
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