enumstd.os.uefi.device_path.DevicePath.Media.HardDriveDevicePath.SignatureType[src]

Fields

no_signature = 0x00
mbr_signature = 0x01

"32-bit signature from address 0x1b8 of the type 0x01 MBR"

guid_signature = 0x02

Source Code

Source code
pub const SignatureType = enum(u8) {
    no_signature = 0x00,
    /// "32-bit signature from address 0x1b8 of the type 0x01 MBR"
    mbr_signature = 0x01,
    guid_signature = 0x02,
}