pub struct BacktraceFrameFmt<'fmt, 'a, 'b> { /* private fields */ }
Expand description
A formatter for just one frame of a backtrace.
This type is created by the BacktraceFmt::frame
function.
Implementations§
Source§impl BacktraceFrameFmt<'_, '_, '_>
impl BacktraceFrameFmt<'_, '_, '_>
Sourcepub fn backtrace_frame(&mut self, frame: &BacktraceFrame) -> Result<(), Error>
pub fn backtrace_frame(&mut self, frame: &BacktraceFrame) -> Result<(), Error>
Prints a BacktraceFrame
with this frame formatter.
This will recursively print all BacktraceSymbol
instances within the
BacktraceFrame
.
§Required features
This function requires the std
feature of the backtrace
crate to be
enabled, and the std
feature is enabled by default.
Sourcepub fn backtrace_symbol(
&mut self,
frame: &BacktraceFrame,
symbol: &BacktraceSymbol,
) -> Result<(), Error>
pub fn backtrace_symbol( &mut self, frame: &BacktraceFrame, symbol: &BacktraceSymbol, ) -> Result<(), Error>
Prints a BacktraceSymbol
within a BacktraceFrame
.
§Required features
This function requires the std
feature of the backtrace
crate to be
enabled, and the std
feature is enabled by default.
Sourcepub fn symbol(&mut self, frame: &Frame, symbol: &Symbol) -> Result<(), Error>
pub fn symbol(&mut self, frame: &Frame, symbol: &Symbol) -> Result<(), Error>
Prints a raw traced Frame
and Symbol
, typically from within the raw
callbacks of this crate.
Sourcepub fn print_raw(
&mut self,
frame_ip: *mut c_void,
symbol_name: Option<SymbolName<'_>>,
filename: Option<BytesOrWideString<'_>>,
lineno: Option<u32>,
) -> Result<(), Error>
pub fn print_raw( &mut self, frame_ip: *mut c_void, symbol_name: Option<SymbolName<'_>>, filename: Option<BytesOrWideString<'_>>, lineno: Option<u32>, ) -> Result<(), Error>
Adds a raw frame to the backtrace output.
This method, unlike the previous, takes the raw arguments in case they’re being source from different locations. Note that this may be called multiple times for one frame.
Sourcepub fn print_raw_with_column(
&mut self,
frame_ip: *mut c_void,
symbol_name: Option<SymbolName<'_>>,
filename: Option<BytesOrWideString<'_>>,
lineno: Option<u32>,
colno: Option<u32>,
) -> Result<(), Error>
pub fn print_raw_with_column( &mut self, frame_ip: *mut c_void, symbol_name: Option<SymbolName<'_>>, filename: Option<BytesOrWideString<'_>>, lineno: Option<u32>, colno: Option<u32>, ) -> Result<(), Error>
Adds a raw frame to the backtrace output, including column information.
This method, like the previous, takes the raw arguments in case they’re being source from different locations. Note that this may be called multiple times for one frame.
Trait Implementations§
Auto Trait Implementations§
impl<'fmt, 'a, 'b> Freeze for BacktraceFrameFmt<'fmt, 'a, 'b>
impl<'fmt, 'a, 'b> !RefUnwindSafe for BacktraceFrameFmt<'fmt, 'a, 'b>
impl<'fmt, 'a, 'b> !Send for BacktraceFrameFmt<'fmt, 'a, 'b>
impl<'fmt, 'a, 'b> !Sync for BacktraceFrameFmt<'fmt, 'a, 'b>
impl<'fmt, 'a, 'b> Unpin for BacktraceFrameFmt<'fmt, 'a, 'b>
impl<'fmt, 'a, 'b> !UnwindSafe for BacktraceFrameFmt<'fmt, 'a, 'b>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§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> ⓘ
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> ⓘ
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