Struct backtrace::BacktraceFrameFmt [−][src]
A formatter for just one frame of a backtrace.
This type is created by the BacktraceFmt::frame function.
Implementations
impl BacktraceFrameFmt<'_, '_, '_>[src]
pub fn backtrace_frame(&mut self, frame: &BacktraceFrame) -> Result[src]
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.
pub fn backtrace_symbol(
&mut self,
frame: &BacktraceFrame,
symbol: &BacktraceSymbol
) -> Result[src]
&mut self,
frame: &BacktraceFrame,
symbol: &BacktraceSymbol
) -> Result
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.
pub fn symbol(&mut self, frame: &Frame, symbol: &Symbol) -> Result[src]
Prints a raw traced Frame and Symbol, typically from within the raw
callbacks of this crate.
pub fn print_raw(
&mut self,
frame_ip: *mut c_void,
symbol_name: Option<SymbolName<'_>>,
filename: Option<BytesOrWideString<'_>>,
lineno: Option<u32>
) -> Result[src]
&mut self,
frame_ip: *mut c_void,
symbol_name: Option<SymbolName<'_>>,
filename: Option<BytesOrWideString<'_>>,
lineno: Option<u32>
) -> Result
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.
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[src]
&mut self,
frame_ip: *mut c_void,
symbol_name: Option<SymbolName<'_>>,
filename: Option<BytesOrWideString<'_>>,
lineno: Option<u32>,
colno: Option<u32>
) -> Result
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
impl Drop for BacktraceFrameFmt<'_, '_, '_>[src]
Auto Trait Implementations
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> where
'a: 'fmt,
'b: 'fmt,
'a: 'fmt,
'b: 'fmt,
impl<'fmt, 'a, 'b> !UnwindSafe for BacktraceFrameFmt<'fmt, 'a, 'b>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,