Struct object::macho::PreboundDylibCommand[][src]

#[repr(C)]pub struct PreboundDylibCommand<E: Endian> {
    pub cmd: U32<E>,
    pub cmdsize: U32<E>,
    pub name: LcStr<E>,
    pub nmodules: U32<E>,
    pub linked_modules: LcStr<E>,
}

Fields

cmd: U32<E>

LC_PREBOUND_DYLIB

cmdsize: U32<E>

includes strings

name: LcStr<E>

library’s path name

nmodules: U32<E>

number of modules in library

linked_modules: LcStr<E>

bit vector of linked modules

Trait Implementations

impl<E: Clone + Endian> Clone for PreboundDylibCommand<E>[src]

impl<E: Copy + Endian> Copy for PreboundDylibCommand<E>[src]

impl<E: Debug + Endian> Debug for PreboundDylibCommand<E>[src]

impl<E: Endian> Pod for PreboundDylibCommand<E>[src]

Auto Trait Implementations

impl<E> Send for PreboundDylibCommand<E> where
    E: Send

impl<E> Sync for PreboundDylibCommand<E> where
    E: Sync

impl<E> Unpin for PreboundDylibCommand<E> where
    E: Unpin

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.