pub struct SectionOffsets {
pub text: u64,
pub rodata: u64,
pub data: u64,
pub bss: u64,
}Expand description
Per-module section offsets (runtime bias) computed from /proc/PID/maps
Fields§
§text: u64§rodata: u64§data: u64§bss: u64Trait Implementations§
Source§impl Clone for SectionOffsets
impl Clone for SectionOffsets
Source§fn clone(&self) -> SectionOffsets
fn clone(&self) -> SectionOffsets
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 SectionOffsets
impl Debug for SectionOffsets
Source§impl Default for SectionOffsets
impl Default for SectionOffsets
Source§fn default() -> SectionOffsets
fn default() -> SectionOffsets
Returns the “default value” for a type. Read more
impl Copy for SectionOffsets
Auto Trait Implementations§
impl Freeze for SectionOffsets
impl RefUnwindSafe for SectionOffsets
impl Send for SectionOffsets
impl Sync for SectionOffsets
impl Unpin for SectionOffsets
impl UnwindSafe for SectionOffsets
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