Struct backtrace::BacktraceFrameFmt[][src]

pub struct BacktraceFrameFmt<'fmt, 'a, 'b> { /* fields omitted */ }

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]

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]

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]

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]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

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, 

impl<'fmt, 'a, 'b> !UnwindSafe for BacktraceFrameFmt<'fmt, 'a, 'b>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

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]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.