Struct goblin::mach::load_command::LinkerOptionCommand
source · #[repr(C)]pub struct LinkerOptionCommand {
pub cmd: u32,
pub cmdsize: u32,
pub count: u32,
}
Expand description
The linker_option_command contains linker options embedded in object files.
Fields§
§cmd: u32
LC_LINKER_OPTION only used in MH_OBJECT fipub constypes
cmdsize: u32
§count: u32
number of strings concatenation of zero terminated UTF8 strings. Zero filled at end to align
Trait Implementations§
source§impl Clone for LinkerOptionCommand
impl Clone for LinkerOptionCommand
source§fn clone(&self) -> LinkerOptionCommand
fn clone(&self) -> LinkerOptionCommand
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 LinkerOptionCommand
impl Debug for LinkerOptionCommand
source§impl FromCtx<Endian> for LinkerOptionCommand
impl FromCtx<Endian> for LinkerOptionCommand
source§impl<'a> IntoCtx<Endian> for &'a LinkerOptionCommand
impl<'a> IntoCtx<Endian> for &'a LinkerOptionCommand
source§impl IntoCtx<Endian> for LinkerOptionCommand
impl IntoCtx<Endian> for LinkerOptionCommand
source§impl<'a> TryFromCtx<'a, Endian> for LinkerOptionCommandwhere
LinkerOptionCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for LinkerOptionCommandwhere LinkerOptionCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a LinkerOptionCommand
impl<'a> TryIntoCtx<Endian> for &'a LinkerOptionCommand
source§impl TryIntoCtx<Endian> for LinkerOptionCommand
impl TryIntoCtx<Endian> for LinkerOptionCommand
impl Copy for LinkerOptionCommand
Auto Trait Implementations§
impl RefUnwindSafe for LinkerOptionCommand
impl Send for LinkerOptionCommand
impl Sync for LinkerOptionCommand
impl Unpin for LinkerOptionCommand
impl UnwindSafe for LinkerOptionCommand
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