pub enum VerbosityLevel {
Minimal,
Segments,
Full,
}Expand description
Controls how much detail is emitted in formatted output.
Variants§
Minimal
Only show segment type names.
Segments
Show segment types + data element values (no binary hex).
Full
Show everything including binary hex dumps.
Auto Trait Implementations§
impl Freeze for VerbosityLevel
impl RefUnwindSafe for VerbosityLevel
impl Send for VerbosityLevel
impl Sync for VerbosityLevel
impl Unpin for VerbosityLevel
impl UnsafeUnpin for VerbosityLevel
impl UnwindSafe for VerbosityLevel
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