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: u32The 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
Auto Trait Implementations
impl<'a> RefUnwindSafe for FunctionFrames<'a>impl<'a> Send for FunctionFrames<'a>impl<'a> Sync for FunctionFrames<'a>impl<'a> Unpin for FunctionFrames<'a>impl<'a> UnwindSafe for FunctionFrames<'a>Blanket Implementations
Mutably borrows from an owned value. Read more