Struct goblin::mach::load_command::IdentCommand
source · #[repr(C)]pub struct IdentCommand {
pub cmd: u32,
pub cmdsize: u32,
}
Expand description
The ident_command contains a free format string table following the ident_command structure. The strings are null terminated and the size of the command is padded out with zero bytes to a multiple of 4 bytes/ (THIS IS OBSOLETE and no longer supported).
Fields§
§cmd: u32
LC_IDENT
cmdsize: u32
strings that follow this command
Trait Implementations§
source§impl Clone for IdentCommand
impl Clone for IdentCommand
source§fn clone(&self) -> IdentCommand
fn clone(&self) -> IdentCommand
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 IdentCommand
impl Debug for IdentCommand
source§impl<'a> IntoCtx<Endian> for &'a IdentCommand
impl<'a> IntoCtx<Endian> for &'a IdentCommand
source§impl<'a> TryFromCtx<'a, Endian> for IdentCommandwhere
IdentCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for IdentCommandwhere IdentCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a IdentCommand
impl<'a> TryIntoCtx<Endian> for &'a IdentCommand
source§impl TryIntoCtx<Endian> for IdentCommand
impl TryIntoCtx<Endian> for IdentCommand
impl Copy for IdentCommand
Auto Trait Implementations§
impl RefUnwindSafe for IdentCommand
impl Send for IdentCommand
impl Sync for IdentCommand
impl Unpin for IdentCommand
impl UnwindSafe for IdentCommand
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