Struct DyldInfoCommand

struct DyldInfoCommand<E: Endian> { ... }

Fields

cmd: crate::endian::U32<E>

LC_DYLD_INFO or LC_DYLD_INFO_ONLY

cmdsize: crate::endian::U32<E>

sizeof(struct DyldInfoCommand)

rebase_off: crate::endian::U32<E>

file offset to rebase info

rebase_size: crate::endian::U32<E>

size of rebase info

bind_off: crate::endian::U32<E>

file offset to binding info

bind_size: crate::endian::U32<E>

size of binding info

weak_bind_off: crate::endian::U32<E>

file offset to weak binding info

weak_bind_size: crate::endian::U32<E>

size of weak binding info

lazy_bind_off: crate::endian::U32<E>

file offset to lazy binding info

lazy_bind_size: crate::endian::U32<E>

size of lazy binding infs

export_off: crate::endian::U32<E>

file offset to lazy binding info

export_size: crate::endian::U32<E>

size of lazy binding infs

Implementations

impl<E> Freeze for DyldInfoCommand<E>

impl<E> RefUnwindSafe for DyldInfoCommand<E>

impl<E> Send for DyldInfoCommand<E>

impl<E> Sync for DyldInfoCommand<E>

impl<E> Unpin for DyldInfoCommand<E>

impl<E> UnwindSafe for DyldInfoCommand<E>

impl<E: $crate::clone::Clone + Endian> Clone for DyldInfoCommand<E>

fn clone(self: &Self) -> DyldInfoCommand<E>

impl<E: $crate::fmt::Debug + Endian> Debug for DyldInfoCommand<E>

fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result

impl<E: $crate::marker::Copy + Endian> Copy for DyldInfoCommand<E>

impl<E: Endian> Pod for DyldInfoCommand<E>

impl<T> Any for DyldInfoCommand<E>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for DyldInfoCommand<E>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for DyldInfoCommand<E>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for DyldInfoCommand<E>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for DyldInfoCommand<E>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for DyldInfoCommand<E>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for DyldInfoCommand<E>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for DyldInfoCommand<E>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for DyldInfoCommand<E>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>