pub enum FirmwareIdFormat {
    FreeForm,
    UefiGuid,
    VendorOemSpecific,
    None,
}
Expand description

Variants

FreeForm

The format is a free-form string that is implementation specific.

EXAMPLE: ‘35EQP72B’,0

UefiGuid

The format is a string representation of the UEFI ESRT FwClass GUID or the UEFI Firmware Management Protocol ImageTypeId, as defined by the UEFI Specification. To represent the GUID, the string is formatted using the 36-character UUID string format specified in RFC4122: “xxxxxxxx-xxxxxxxx-xxxx-xxxxxxxxxxxx.” Each x represents a hexadecimal digit (0-F).

EXAMPLE: ‘1624a9df-5e13-47fc-874a-df3aff143089’,0

VendorOemSpecific

BIOS Vendor/OEM-specific

None

A value unknown to this standard, check the raw value

Trait Implementations

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.