Struct pdb_addr2line::FunctionFrames[][src]

pub struct FunctionFrames<'a> {
    pub start_rva: u32,
    pub end_rva: Option<u32>,
    pub frames: Vec<Frame<'a>>,
}
Expand description

The result of an address lookup from Context::find_frames.

Fields

start_rva: u32

The start address of the function which contained the looked-up address.

end_rva: Option<u32>

The end address of the function which contained the looked-up address, if known.

frames: Vec<Frame<'a>>

The inline stack at the looked-up address, ordered from inside to outside. Always contains at least one entry: the last element is always the function which contains the looked-up address.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.