pub enum Verbosity {
Minimal = 0,
Normal = 1,
Verbose = 2,
Full = 3,
}Expand description
Log verbosity levels
Controls how much detail is included in log messages:
- Level 0: Minimal (256 chars)
- Level 1: Normal (512 chars)
- Level 2: Verbose (1024 chars)
- Level 3: Full (unlimited)
Variants§
Minimal = 0
Minimal verbosity (256 chars max)
Normal = 1
Normal verbosity (512 chars max)
Verbose = 2
Verbose (1024 chars max)
Full = 3
Full verbosity (no truncation)
Implementations§
Trait Implementations§
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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.