Struct goblin::mach::load_command::DylibCommand
source · #[repr(C)]pub struct DylibCommand {
pub cmd: u32,
pub cmdsize: u32,
pub dylib: Dylib,
}
Fields§
§cmd: u32
LC_ID_DYLIB, LC_LOAD_DYLIB, LC_LOAD_WEAK_DYLIB, LC_REEXPORT_DYLIB
cmdsize: u32
includes pathname string
dylib: Dylib
the library identification
Trait Implementations§
source§impl Clone for DylibCommand
impl Clone for DylibCommand
source§fn clone(&self) -> DylibCommand
fn clone(&self) -> DylibCommand
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DylibCommand
impl Debug for DylibCommand
source§impl<'a> IntoCtx<Endian> for &'a DylibCommand
impl<'a> IntoCtx<Endian> for &'a DylibCommand
source§impl<'a> TryFromCtx<'a, Endian> for DylibCommandwhere
DylibCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for DylibCommandwhere DylibCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a DylibCommand
impl<'a> TryIntoCtx<Endian> for &'a DylibCommand
source§impl TryIntoCtx<Endian> for DylibCommand
impl TryIntoCtx<Endian> for DylibCommand
impl Copy for DylibCommand
Auto Trait Implementations§
impl RefUnwindSafe for DylibCommand
impl Send for DylibCommand
impl Sync for DylibCommand
impl Unpin for DylibCommand
impl UnwindSafe for DylibCommand
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more