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§
Source§impl<'a> Clone for FunctionFrames<'a>
impl<'a> Clone for FunctionFrames<'a>
Source§fn clone(&self) -> FunctionFrames<'a>
fn clone(&self) -> FunctionFrames<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for FunctionFrames<'a>
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more