extern struct 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 = .UUIDLC_UUID
cmdsize: u32 = @sizeOf(uuid_command)sizeof(struct uuid_command)
uuid: [16]u8 = undefinedthe 128-bit uuid

Source

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, }