Enum color_backtrace::Verbosity
source · 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 PartialEq for Verbosity
impl PartialEq for Verbosity
source§impl PartialOrd for Verbosity
impl PartialOrd for Verbosity
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Verbosity
impl Eq for Verbosity
impl StructuralEq for Verbosity
impl StructuralPartialEq for Verbosity
Auto Trait Implementations§
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