[][src]Struct symbolic_debuginfo::Function

pub struct Function<'data> {
    pub address: u64,
    pub size: u64,
    pub name: Name<'data>,
    pub compilation_dir: &'data [u8],
    pub lines: Vec<LineInfo<'data>>,
    pub inlinees: Vec<Function<'data>>,
    pub inline: bool,
}

Debug information for a function.

Fields

address: u64

Relative instruction address of the start of the function.

size: u64

Total code size covered by the function body, including inlined functions.

name: Name<'data>

The name and language of the function symbol.

compilation_dir: &'data [u8]

Path to the compilation directory. File paths are relative to this.

lines: Vec<LineInfo<'data>>

Lines covered by this function, including inlined children.

inlinees: Vec<Function<'data>>

Functions that have been inlined into this function's body.

inline: bool

Specifies whether this function is inlined.

Trait Implementations

impl<'data> Clone for Function<'data>[src]

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

Performs copy-assignment from source. Read more

impl<'_> Debug for Function<'_>[src]

Auto Trait Implementations

impl<'data> Send for Function<'data>

impl<'data> Sync for Function<'data>

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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.

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.

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

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

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