pub struct SyncAddressInfo {
pub symbol: SymbolInfo,
pub frames: Option<FramesLookupResult>,
}Expand description
The lookup result from lookup_sync.
Fields§
§symbol: SymbolInfoInformation about the symbol which contains the looked up address.
frames: Option<FramesLookupResult>Information about the frames at the looked up address, from the debug info.
Trait Implementations§
Source§impl Clone for SyncAddressInfo
impl Clone for SyncAddressInfo
Source§fn clone(&self) -> SyncAddressInfo
fn clone(&self) -> SyncAddressInfo
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 SyncAddressInfo
impl Debug for SyncAddressInfo
Source§impl PartialEq for SyncAddressInfo
impl PartialEq for SyncAddressInfo
impl Eq for SyncAddressInfo
impl StructuralPartialEq for SyncAddressInfo
Auto Trait Implementations§
impl Freeze for SyncAddressInfo
impl RefUnwindSafe for SyncAddressInfo
impl Send for SyncAddressInfo
impl Sync for SyncAddressInfo
impl Unpin for SyncAddressInfo
impl UnwindSafe for SyncAddressInfo
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