Struct symbolic_debuginfo::Function[][src]

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.

Implementations

impl Function<'_>[src]

pub fn end_address(&self) -> u64[src]

End address of the entire function body, including inlined functions.

This address points at the first instruction after the function body.

Trait Implementations

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

impl Debug for Function<'_>[src]

Auto Trait Implementations

impl<'data> RefUnwindSafe for Function<'data>

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

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

impl<'data> Unpin for Function<'data>

impl<'data> UnwindSafe for Function<'data>

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.