pub struct AddressInfo {
pub symbol: SymbolInfo,
pub frames: Option<Vec<FrameDebugInfo>>,
}Expand description
The lookup result for an address.
Fields§
§symbol: SymbolInfoInformation about the symbol which contains the looked up address.
frames: Option<Vec<FrameDebugInfo>>Information about the frames at the looked up address, if found in the debug info.
This Vec contains the file name and line number of the address. If the compiler inlined a function call at this address, then this Vec also contains the function name of the inlined function, along with the file and line information inside that function.
The Vec begins with the callee-most (“innermost”) inlinee, followed by its caller, and so on. The last element is always the outer function.
Trait Implementations§
Source§impl Clone for AddressInfo
impl Clone for AddressInfo
Source§fn clone(&self) -> AddressInfo
fn clone(&self) -> AddressInfo
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 moreSource§impl Debug for AddressInfo
impl Debug for AddressInfo
Source§impl PartialEq for AddressInfo
impl PartialEq for AddressInfo
impl Eq for AddressInfo
impl StructuralPartialEq for AddressInfo
Auto Trait Implementations§
impl Freeze for AddressInfo
impl RefUnwindSafe for AddressInfo
impl Send for AddressInfo
impl Sync for AddressInfo
impl Unpin for AddressInfo
impl UnwindSafe for AddressInfo
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