pub enum BacktraceMode {
Off,
Unresolved,
Resolved,
}
Available on crate feature
with-backtrace
only.Expand description
Determines how backtraces will be displayed.
Variants§
Off
Backtraces will be omitted from the log.
Unresolved
Backtraces will include addresses, but no symbol names or locations.
Resolved
Backtraces will include addresses as well as symbol names and locations when possible.
Trait Implementations§
Source§impl Clone for BacktraceMode
impl Clone for BacktraceMode
Source§fn clone(&self) -> BacktraceMode
fn clone(&self) -> BacktraceMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BacktraceMode
impl Debug for BacktraceMode
Source§impl PartialEq for BacktraceMode
impl PartialEq for BacktraceMode
impl Copy for BacktraceMode
impl Eq for BacktraceMode
impl StructuralPartialEq for BacktraceMode
Auto Trait Implementations§
impl Freeze for BacktraceMode
impl RefUnwindSafe for BacktraceMode
impl Send for BacktraceMode
impl Sync for BacktraceMode
impl Unpin for BacktraceMode
impl UnwindSafe for BacktraceMode
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