pub enum Verbosity {
Minimal,
Medium,
Full,
}
Expand description
Defines how verbose the backtrace is supposed to be.
Variants§
Minimal
Print a small message including the panic payload and the panic location.
Medium
Everything in Minimal
and additionally print a backtrace.
Full
Everything in Medium
plus source snippets for all backtrace locations.
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