pub struct Backtrace { /* private fields */ }
Expand description
Captures an entire backtrace, whose elements will be lazily resolved. See
Backtrace::elements
for more information.
Implementations§
Source§impl Backtrace
impl Backtrace
Sourcepub fn elements(&self) -> Vec<BacktraceElement>
pub fn elements(&self) -> Vec<BacktraceElement>
Gets the elements of the backtrace including inlined frames.
Excludes all backtrace elements up to the original get_backtrace
call as
well as additional skipped frames from that call. Also drops the suffix
of frames from __rust_begin_short_backtrace
onwards.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Backtrace
impl !RefUnwindSafe for Backtrace
impl Send for Backtrace
impl !Sync for Backtrace
impl Unpin for Backtrace
impl UnwindSafe for Backtrace
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more