Struct goblin::mach::load_command::DylibModule [−][src]
a module table entry
Fields
module_name: u32
the module name (index into string table)
iextdefsym: u32
index into externally defined symbols
nextdefsym: u32
number of externally defined symbols
irefsym: u32
index into reference symbol table
nrefsym: u32
number of reference symbol table entries
ilocalsym: u32
index into symbols for local symbols
nlocalsym: u32
number of local symbols
iextrel: u32
index into external relocation entries
nextrel: u32
number of external relocation entries
iinit_iterm: u32
low 16 bits are the index into the init section, high 16 bits are the index into the term section
ninit_nterm: u32
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
the (__OBJC,_module_info) section
objc_module_info_size: u32
the (__OBJC,__module_info) section
Trait Implementations
impl Clone for DylibModule
[src]
fn clone(&self) -> DylibModule
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for DylibModule
[src]
impl Debug for DylibModule
[src]
impl FromCtx<Endian, [u8]> for DylibModule
[src]
impl<'a> IntoCtx<Endian, [u8]> for &'a DylibModule
[src]
impl IntoCtx<Endian, [u8]> for DylibModule
[src]
impl SizeWith<Endian> for DylibModule
[src]
impl<'a> TryFromCtx<'a, Endian, [u8]> for DylibModule where
DylibModule: 'a,
[src]
DylibModule: 'a,
type Error = Error
fn try_from_ctx(
src: &'a [u8],
ctx: Endian
) -> Result<(Self, usize), Self::Error>
[src]
src: &'a [u8],
ctx: Endian
) -> Result<(Self, usize), Self::Error>
impl<'a> TryIntoCtx<Endian, [u8]> for &'a DylibModule
[src]
type Error = Error
fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>
[src]
impl TryIntoCtx<Endian, [u8]> for DylibModule
[src]
Auto Trait Implementations
impl RefUnwindSafe for DylibModule
impl Send for DylibModule
impl Sync for DylibModule
impl Unpin for DylibModule
impl UnwindSafe for DylibModule
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,