pub enum BacktraceEntry {
Frame(Frame),
OmittedFrames {
count: usize,
skipped_crate: &'static str,
},
}Expand description
A single entry in a stack backtrace.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BacktraceEntry
impl RefUnwindSafe for BacktraceEntry
impl Send for BacktraceEntry
impl Sync for BacktraceEntry
impl Unpin for BacktraceEntry
impl UnwindSafe for BacktraceEntry
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