pub struct AttributedFrame {
pub module_index: Option<u32>,
pub relative_address: u64,
}Expand description
One frame, expressed relative to a module.
Fields§
§module_index: Option<u32>Index into AttributedCapture::modules, or None when the address
fell outside every loaded module.
relative_address: u64Offset from the module’s base, or the raw address when unattributed.
Never empty: an offset without a module is still evidence, and discarding it would lose the only trace of that frame.
Trait Implementations§
Source§impl Clone for AttributedFrame
impl Clone for AttributedFrame
Source§fn clone(&self) -> AttributedFrame
fn clone(&self) -> AttributedFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AttributedFrame
Source§impl Debug for AttributedFrame
impl Debug for AttributedFrame
impl Eq for AttributedFrame
Source§impl PartialEq for AttributedFrame
impl PartialEq for AttributedFrame
impl StructuralPartialEq for AttributedFrame
Auto Trait Implementations§
impl Freeze for AttributedFrame
impl RefUnwindSafe for AttributedFrame
impl Send for AttributedFrame
impl Sync for AttributedFrame
impl Unpin for AttributedFrame
impl UnsafeUnpin for AttributedFrame
impl UnwindSafe for AttributedFrame
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