#[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: u32
LC_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: u32
sizeof(struct linkedit_data_command)
dataoff: u32
file offset of data in __LINKEDIT segment
datasize: u32
file 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 Default for LinkeditDataCommand
impl Default for LinkeditDataCommand
Source§fn default() -> LinkeditDataCommand
fn default() -> LinkeditDataCommand
Returns the “default value” for a type. Read more
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 Freeze for LinkeditDataCommand
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)