Struct goblin::mach::load_command::LinkeditDataCommand   
source · #[repr(C)]pub struct LinkeditDataCommand {
    pub cmd: u32,
    pub cmdsize: u32,
    pub dataoff: u32,
    pub datasize: u32,
}Expand description
The linkedit_data_command contains the offsets and sizes of a blob of data in the __LINKEDIT segment.
Fields§
§cmd: u32LC_CODE_SIGNATURE, LC_SEGMENT_SPLIT_INFO, LC_FUNCTION_STARTS, LC_DATA_IN_CODE, LC_DYLIB_CODE_SIGN_DRS, LC_LINKER_OPTIMIZATION_HINT, LC_DYLD_EXPORTS_TRIE, or LC_DYLD_CHAINED_FIXUPS.
cmdsize: u32sizeof(struct linkedit_data_command)
dataoff: u32file offset of data in __LINKEDIT segment
datasize: u32file size of data in __LINKEDIT segment
Trait Implementations§
source§impl Clone for LinkeditDataCommand
 
impl Clone for LinkeditDataCommand
source§fn clone(&self) -> LinkeditDataCommand
 
fn clone(&self) -> LinkeditDataCommand
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 LinkeditDataCommand
 
impl Debug for LinkeditDataCommand
source§impl FromCtx<Endian> for LinkeditDataCommand
 
impl FromCtx<Endian> for LinkeditDataCommand
source§impl<'a> IntoCtx<Endian> for &'a LinkeditDataCommand
 
impl<'a> IntoCtx<Endian> for &'a LinkeditDataCommand
source§impl IntoCtx<Endian> for LinkeditDataCommand
 
impl IntoCtx<Endian> for LinkeditDataCommand
source§impl<'a> TryFromCtx<'a, Endian> for LinkeditDataCommandwhere
    LinkeditDataCommand: 'a,
 
impl<'a> TryFromCtx<'a, Endian> for LinkeditDataCommandwhere LinkeditDataCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a LinkeditDataCommand
 
impl<'a> TryIntoCtx<Endian> for &'a LinkeditDataCommand
source§impl TryIntoCtx<Endian> for LinkeditDataCommand
 
impl TryIntoCtx<Endian> for LinkeditDataCommand
impl Copy for LinkeditDataCommand
Auto Trait Implementations§
impl RefUnwindSafe for LinkeditDataCommand
impl Send for LinkeditDataCommand
impl Sync for LinkeditDataCommand
impl Unpin for LinkeditDataCommand
impl UnwindSafe for LinkeditDataCommand
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