pub struct SegmentCommand {
pub cmd: u32,
pub cmdsize: u32,
pub segname: String,
pub vmaddr: u64,
pub vmsize: u64,
pub fileoff: u64,
pub filesize: u64,
pub maxprot: vm_prot_t,
pub initprot: vm_prot_t,
pub nsects: u32,
pub flags: u32,
pub sections: Vec<Section>,
}
Fields§
§cmd: u32
§cmdsize: u32
§segname: String
§vmaddr: u64
§vmsize: u64
§fileoff: u64
§filesize: u64
§maxprot: vm_prot_t
§initprot: vm_prot_t
§nsects: u32
§flags: u32
§sections: Vec<Section>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SegmentCommand
impl RefUnwindSafe for SegmentCommand
impl Send for SegmentCommand
impl Sync for SegmentCommand
impl Unpin for SegmentCommand
impl UnwindSafe for SegmentCommand
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