Struct DylibModule64
struct DylibModule64<E: Endian> { ... }
Fields
module_name: crate::endian::U32<E>the module name (index into string table)
iextdefsym: crate::endian::U32<E>index into externally defined symbols
nextdefsym: crate::endian::U32<E>number of externally defined symbols
irefsym: crate::endian::U32<E>index into reference symbol table
nrefsym: crate::endian::U32<E>number of reference symbol table entries
ilocalsym: crate::endian::U32<E>index into symbols for local symbols
nlocalsym: crate::endian::U32<E>number of local symbols
iextrel: crate::endian::U32<E>index into external relocation entries
nextrel: crate::endian::U32<E>number of external relocation entries
iinit_iterm: crate::endian::U32<E>low 16 bits are the index into the init section, high 16 bits are the index into the term section
ninit_nterm: crate::endian::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_size: crate::endian::U32<E>for this module size of the (__OBJC,__module_info) section
objc_module_info_addr: crate::endian::U64<E>for this module address of the start of the (__OBJC,__module_info) section
Implementations
impl<E> Freeze for DylibModule64<E>
impl<E> RefUnwindSafe for DylibModule64<E>
impl<E> Send for DylibModule64<E>
impl<E> Sync for DylibModule64<E>
impl<E> Unpin for DylibModule64<E>
impl<E> UnwindSafe for DylibModule64<E>
impl<E: $crate::clone::Clone + Endian> Clone for DylibModule64<E>
fn clone(self: &Self) -> DylibModule64<E>
impl<E: $crate::fmt::Debug + Endian> Debug for DylibModule64<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for DylibModule64<E>
impl<E: Endian> Pod for DylibModule64<E>
impl<T> Any for DylibModule64<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for DylibModule64<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for DylibModule64<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for DylibModule64<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for DylibModule64<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for DylibModule64<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for DylibModule64<E>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for DylibModule64<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for DylibModule64<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>