Struct object::macho::DylibModule32

source ·
#[repr(C)]
pub struct DylibModule32<E: Endian> {
Show 13 fields pub module_name: U32<E>, pub iextdefsym: U32<E>, pub nextdefsym: U32<E>, pub irefsym: U32<E>, pub nrefsym: U32<E>, pub ilocalsym: U32<E>, pub nlocalsym: U32<E>, pub iextrel: U32<E>, pub nextrel: U32<E>, pub iinit_iterm: U32<E>, pub ninit_nterm: U32<E>, pub objc_module_info_addr: U32<E>, pub objc_module_info_size: U32<E>,
}

Fields§

§module_name: U32<E>

the module name (index into string table)

§iextdefsym: U32<E>

index into externally defined symbols

§nextdefsym: U32<E>

number of externally defined symbols

§irefsym: U32<E>

index into reference symbol table

§nrefsym: U32<E>

number of reference symbol table entries

§ilocalsym: U32<E>

index into symbols for local symbols

§nlocalsym: U32<E>

number of local symbols

§iextrel: U32<E>

index into external relocation entries

§nextrel: U32<E>

number of external relocation entries

§iinit_iterm: U32<E>

low 16 bits are the index into the init section, high 16 bits are the index into the term section

§ninit_nterm: U32<E>

low 16 bits are the number of init section entries, high 16 bits are the number of term section entries

§objc_module_info_addr: U32<E>

for this module address of the start of the (__OBJC,__module_info) section

§objc_module_info_size: U32<E>

for this module size of the (__OBJC,__module_info) section

Trait Implementations§

source§

impl<E: Clone + Endian> Clone for DylibModule32<E>

source§

fn clone(&self) -> DylibModule32<E>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<E: Debug + Endian> Debug for DylibModule32<E>

source§

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

Formats the value using the given formatter. Read more
source§

impl<E: Copy + Endian> Copy for DylibModule32<E>

source§

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

Auto Trait Implementations§

§

impl<E> Freeze for DylibModule32<E>

§

impl<E> RefUnwindSafe for DylibModule32<E>
where E: RefUnwindSafe,

§

impl<E> Send for DylibModule32<E>
where E: Send,

§

impl<E> Sync for DylibModule32<E>
where E: Sync,

§

impl<E> Unpin for DylibModule32<E>
where E: Unpin,

§

impl<E> UnwindSafe for DylibModule32<E>
where E: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.