pub struct LoadSegment {
    pub vaddr: VirtualAddress,
    pub offset: u64,
    pub filesz: u64,
    pub memsz: u64,
    pub flags: PFlags,
    pub align: u64,
}Fields§
§vaddr: VirtualAddress§offset: u64§filesz: u64§memsz: u64§flags: PFlags§align: u64Trait Implementations§
Source§impl Clone for LoadSegment
 
impl Clone for LoadSegment
Source§fn clone(&self) -> LoadSegment
 
fn clone(&self) -> LoadSegment
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 LoadSegment
 
impl Debug for LoadSegment
impl Copy for LoadSegment
Auto Trait Implementations§
impl Freeze for LoadSegment
impl RefUnwindSafe for LoadSegment
impl Send for LoadSegment
impl Sync for LoadSegment
impl Unpin for LoadSegment
impl UnwindSafe for LoadSegment
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