pub struct CrashFrame {
pub module_index: Option<u32>,
pub relative_address: u64,
}Expand description
One frame expressed as a stable module-relative offset.
Fields§
§module_index: Option<u32>Index into RawCrashReport::modules, or None when unattributed.
relative_address: u64Offset from the module base, or raw address when unattributed.
Trait Implementations§
Source§impl Clone for CrashFrame
impl Clone for CrashFrame
Source§fn clone(&self) -> CrashFrame
fn clone(&self) -> CrashFrame
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 moreSource§impl Debug for CrashFrame
impl Debug for CrashFrame
impl Eq for CrashFrame
Source§impl PartialEq for CrashFrame
impl PartialEq for CrashFrame
impl StructuralPartialEq for CrashFrame
Auto Trait Implementations§
impl Freeze for CrashFrame
impl RefUnwindSafe for CrashFrame
impl Send for CrashFrame
impl Sync for CrashFrame
impl Unpin for CrashFrame
impl UnsafeUnpin for CrashFrame
impl UnwindSafe for CrashFrame
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