pub enum Verbosity {
Error = 0,
Warning = 1,
Debug = 2,
Normal = 3,
High = 4,
Full = 5,
}Expand description
Enum representing verbosity levels.
Variants§
Error = 0
Only show errors.
Warning = 1
Show warnings and errors.
Debug = 2
Show debug information.
Normal = 3
Show normal information.
High = 4
Show high-level information.
Full = 5
Show full details.
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 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