Struct stacktrace::FrameInfo [] [src]

pub struct FrameInfo {
    pub ip: *mut c_void,
    pub name: Option<String>,
    pub addr: Option<*mut c_void>,
    pub filename: Option<String>,
    pub lineno: Option<u32>,
}

Fields

ip: *mut c_void

Instruction pointer of the call frame

name: Option<String>

Name of the function

addr: Option<*mut c_void> filename: Option<String> lineno: Option<u32>

Trait Implementations

impl Eq for FrameInfo
[src]

impl PartialEq for FrameInfo
[src]

fn eq(&self, __arg_0: &FrameInfo) -> bool

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

fn ne(&self, __arg_0: &FrameInfo) -> bool

This method tests for !=.

impl Clone for FrameInfo
[src]

fn clone(&self) -> FrameInfo

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 Debug for FrameInfo
[src]

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

Formats the value using the given formatter.