extern structstd.macho.uuid_command[src]

The uuid load command contains a single 128-bit unique random number that identifies an object produced by the static link editor.

Fields

cmd: LC = .UUID

LC_UUID

cmdsize: u32 = @sizeOf(uuid_command)

sizeof(struct uuid_command)

uuid: [16]u8 = undefined

the 128-bit uuid

Source Code

Source code
pub const uuid_command = extern struct {
    /// LC_UUID
    cmd: LC = .UUID,

    /// sizeof(struct uuid_command)
    cmdsize: u32 = @sizeOf(uuid_command),

    /// the 128-bit uuid
    uuid: [16]u8 = undefined,
}