Struct PreboundDylibCommand

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

Fields

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

LC_PREBOUND_DYLIB

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

includes strings

name: LcStr<E>

library's path name

nmodules: crate::endian::U32<E>

number of modules in library

linked_modules: LcStr<E>

bit vector of linked modules

Implementations

impl<E> Freeze for PreboundDylibCommand<E>

impl<E> RefUnwindSafe for PreboundDylibCommand<E>

impl<E> Send for PreboundDylibCommand<E>

impl<E> Sync for PreboundDylibCommand<E>

impl<E> Unpin for PreboundDylibCommand<E>

impl<E> UnwindSafe for PreboundDylibCommand<E>

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

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

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

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

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

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

impl<T> Any for PreboundDylibCommand<E>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for PreboundDylibCommand<E>

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

impl<T> BorrowMut for PreboundDylibCommand<E>

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

impl<T> CloneToUninit for PreboundDylibCommand<E>

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

impl<T> From for PreboundDylibCommand<E>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for PreboundDylibCommand<E>

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

impl<T, U> Into for PreboundDylibCommand<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 PreboundDylibCommand<E>

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

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

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