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

#[repr(C)]
pub struct DyldInfoCommand {
    pub cmd: u32,
    pub cmdsize: u32,
    pub rebase_off: u32,
    pub rebase_size: u32,
    pub bind_off: u32,
    pub bind_size: u32,
    pub weak_bind_off: u32,
    pub weak_bind_size: u32,
    pub lazy_bind_off: u32,
    pub lazy_bind_size: u32,
    pub export_off: u32,
    pub export_size: u32,
}

Fields

cmd: u32

LC_DYLD_INFO or LC_DYLD_INFO_ONLY

cmdsize: u32

sizeof(struct dyld_info_command)

rebase_off: u32

file offset to rebase info

rebase_size: u32

size of rebase info

bind_off: u32

file offset to binding info

bind_size: u32

size of binding info

weak_bind_off: u32

file offset to weak binding info

weak_bind_size: u32

size of weak binding info

lazy_bind_off: u32

file offset to lazy binding info

lazy_bind_size: u32

size of lazy binding infs

export_off: u32

file offset to lazy binding info

export_size: u32

size of lazy binding infs

Trait Implementations

impl Copy for DyldInfoCommand[src]

impl Default for DyldInfoCommand[src]

impl Clone for DyldInfoCommand[src]

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

Performs copy-assignment from source. Read more

impl Debug for DyldInfoCommand[src]

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

impl SizeWith<Endian> for DyldInfoCommand[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]