Struct stacktrace::Trace [] [src]

pub struct Trace<E> {
    pub err: E,
    pub stacktrace: StackInfo,
}

Fields

err: E stacktrace: StackInfo

Methods

impl<E> Trace<E>
[src]

fn new(e: E) -> Self

Trait Implementations

impl<E: Eq> Eq for Trace<E>
[src]

impl<E: PartialEq> PartialEq for Trace<E>
[src]

fn eq(&self, __arg_0: &Trace<E>) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Trace<E>) -> bool

This method tests for !=.

impl<E: Clone> Clone for Trace<E>
[src]

fn clone(&self) -> Trace<E>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<E: Debug> Debug for Trace<E>
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.