#[repr(C)]pub struct ProcModuleOffsetsValue {
pub text: u64,
pub rodata: u64,
pub data: u64,
pub bss: u64,
}Expand description
Value for proc_module_offsets map - section offsets for a module
Fields§
§text: u64§rodata: u64§data: u64§bss: u64Implementations§
Trait Implementations§
Source§impl Clone for ProcModuleOffsetsValue
impl Clone for ProcModuleOffsetsValue
Source§fn clone(&self) -> ProcModuleOffsetsValue
fn clone(&self) -> ProcModuleOffsetsValue
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 ProcModuleOffsetsValue
impl Debug for ProcModuleOffsetsValue
impl Copy for ProcModuleOffsetsValue
impl Pod for ProcModuleOffsetsValue
Auto Trait Implementations§
impl Freeze for ProcModuleOffsetsValue
impl RefUnwindSafe for ProcModuleOffsetsValue
impl Send for ProcModuleOffsetsValue
impl Sync for ProcModuleOffsetsValue
impl Unpin for ProcModuleOffsetsValue
impl UnwindSafe for ProcModuleOffsetsValue
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