[][src]Struct goblin::mach::load_command::UuidCommand

#[repr(C)]
pub struct UuidCommand {
    pub cmd: u32,
    pub cmdsize: u32,
    pub uuid: [u8; 16],
}

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

impl Clone for UuidCommand[src]

impl Copy for UuidCommand[src]

impl Debug for UuidCommand[src]

impl FromCtx<Endian, [u8]> for UuidCommand[src]

impl<'a> IntoCtx<Endian, [u8]> for &'a UuidCommand[src]

impl IntoCtx<Endian, [u8]> for UuidCommand[src]

impl SizeWith<Endian> for UuidCommand[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for UuidCommand where
    UuidCommand: 'a, 
[src]

type Error = Error

impl<'a> TryIntoCtx<Endian, [u8]> for &'a UuidCommand[src]

type Error = Error

impl TryIntoCtx<Endian, [u8]> for UuidCommand[src]

type Error = Error

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.