Struct goblin::mach::load_command::RoutinesCommand64
source · #[repr(C)]pub struct RoutinesCommand64 {
pub cmd: u32,
pub cmdsize: u32,
pub init_address: u64,
pub init_module: u64,
pub reserved1: u64,
pub reserved2: u64,
pub reserved3: u64,
pub reserved4: u64,
pub reserved5: u64,
pub reserved6: u64,
}
Expand description
The 64-bit routines command. Same use as above.
Fields§
§cmd: u32
LC_ROUTINES_64
cmdsize: u32
total size of this command
init_address: u64
address of initialization routine
init_module: u64
index into the module table that the init routine is defined in 8 bytes each
reserved1: u64
§reserved2: u64
§reserved3: u64
§reserved4: u64
§reserved5: u64
§reserved6: u64
Trait Implementations§
source§impl Clone for RoutinesCommand64
impl Clone for RoutinesCommand64
source§fn clone(&self) -> RoutinesCommand64
fn clone(&self) -> RoutinesCommand64
Returns a copy 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 RoutinesCommand64
impl Debug for RoutinesCommand64
source§impl FromCtx<Endian> for RoutinesCommand64
impl FromCtx<Endian> for RoutinesCommand64
source§impl<'a> IntoCtx<Endian> for &'a RoutinesCommand64
impl<'a> IntoCtx<Endian> for &'a RoutinesCommand64
source§impl IntoCtx<Endian> for RoutinesCommand64
impl IntoCtx<Endian> for RoutinesCommand64
source§impl<'a> TryFromCtx<'a, Endian> for RoutinesCommand64where
RoutinesCommand64: 'a,
impl<'a> TryFromCtx<'a, Endian> for RoutinesCommand64where RoutinesCommand64: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a RoutinesCommand64
impl<'a> TryIntoCtx<Endian> for &'a RoutinesCommand64
source§impl TryIntoCtx<Endian> for RoutinesCommand64
impl TryIntoCtx<Endian> for RoutinesCommand64
impl Copy for RoutinesCommand64
Auto Trait Implementations§
impl RefUnwindSafe for RoutinesCommand64
impl Send for RoutinesCommand64
impl Sync for RoutinesCommand64
impl Unpin for RoutinesCommand64
impl UnwindSafe for RoutinesCommand64
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