[][src]Struct goblin::mach::load_command::RoutinesCommand64

#[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,
}

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: u64reserved2: u64reserved3: u64reserved4: u64reserved5: u64reserved6: u64

Trait Implementations

impl Copy for RoutinesCommand64[src]

impl Clone for RoutinesCommand64[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for RoutinesCommand64[src]

impl FromCtx<Endian, [u8]> for RoutinesCommand64[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for RoutinesCommand64 where
    RoutinesCommand64: 'a, 
[src]

type Error = Error

type Size = usize

impl<'a> IntoCtx<Endian, [u8]> for &'a RoutinesCommand64[src]

impl IntoCtx<Endian, [u8]> for RoutinesCommand64[src]

impl<'a> TryIntoCtx<Endian, [u8]> for &'a RoutinesCommand64[src]

type Error = Error

type Size = usize

impl TryIntoCtx<Endian, [u8]> for RoutinesCommand64[src]

type Error = Error

type Size = usize

impl SizeWith<Endian> for RoutinesCommand64[src]

type Units = usize

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]