Struct goblin::mach::load_command::UuidCommand
source · #[repr(C)]pub struct UuidCommand {
pub cmd: u32,
pub cmdsize: u32,
pub uuid: [u8; 16],
}
Expand description
The uuid load command contains a single 128-bit unique random number that identifies an object produced by the static link editor.
Fields§
§cmd: u32
LC_UUID
cmdsize: u32
sizeof(struct uuid_command)
uuid: [u8; 16]
16 bytes the 128-bit uuid
Trait Implementations§
source§impl Clone for UuidCommand
impl Clone for UuidCommand
source§fn clone(&self) -> UuidCommand
fn clone(&self) -> UuidCommand
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 UuidCommand
impl Debug for UuidCommand
source§impl<'a> IntoCtx<Endian> for &'a UuidCommand
impl<'a> IntoCtx<Endian> for &'a UuidCommand
source§impl<'a> TryFromCtx<'a, Endian> for UuidCommandwhere
UuidCommand: 'a,
impl<'a> TryFromCtx<'a, Endian> for UuidCommandwhere UuidCommand: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a UuidCommand
impl<'a> TryIntoCtx<Endian> for &'a UuidCommand
source§impl TryIntoCtx<Endian> for UuidCommand
impl TryIntoCtx<Endian> for UuidCommand
impl Copy for UuidCommand
Auto Trait Implementations§
impl RefUnwindSafe for UuidCommand
impl Send for UuidCommand
impl Sync for UuidCommand
impl Unpin for UuidCommand
impl UnwindSafe for UuidCommand
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