Struct goblin::mach::load_command::RoutinesCommand32 [−][src]
The routines command contains the address of the dynamic shared library initialization routine and an index into the module table for the module that defines the routine. Before any modules are used from the library the dynamic linker fully binds the module that defines the initialization routine and then calls it. This gets called before any module initialization routines (used for C++ static constructors) in the library.
Fields
cmd: u32
LC_ROUTINES
cmdsize: u32
total size of this command
init_address: u32
address of initialization routine
init_module: u32
index into the module table that the init routine is defined in
reserved1: u32
reserved2: u32
reserved3: u32
reserved4: u32
reserved5: u32
reserved6: u32
Trait Implementations
impl Clone for RoutinesCommand32
[src]
fn clone(&self) -> RoutinesCommand32
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for RoutinesCommand32
[src]
impl Debug for RoutinesCommand32
[src]
impl FromCtx<Endian, [u8]> for RoutinesCommand32
[src]
impl<'a> IntoCtx<Endian, [u8]> for &'a RoutinesCommand32
[src]
impl IntoCtx<Endian, [u8]> for RoutinesCommand32
[src]
impl SizeWith<Endian> for RoutinesCommand32
[src]
impl<'a> TryFromCtx<'a, Endian, [u8]> for RoutinesCommand32 where
RoutinesCommand32: 'a,
[src]
RoutinesCommand32: '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 RoutinesCommand32
[src]
type Error = Error
fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>
[src]
impl TryIntoCtx<Endian, [u8]> for RoutinesCommand32
[src]
Auto Trait Implementations
impl RefUnwindSafe for RoutinesCommand32
impl Send for RoutinesCommand32
impl Sync for RoutinesCommand32
impl Unpin for RoutinesCommand32
impl UnwindSafe for RoutinesCommand32
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>,