#[repr(transparent)]pub struct DeviceType(pub u8);
Expand description
Type identifier for a device path node.
Tuple Fields§
§0: u8
Implementations§
Source§impl DeviceType
impl DeviceType
Sourcepub const HARDWARE: DeviceType
pub const HARDWARE: DeviceType
Hardware Device Path.
This Device Path defines how a device is attached to the resource domain of a system, where resource domain is simply the shared memory, memory mapped I/ O, and I/O space of the system.
Sourcepub const ACPI: DeviceType
pub const ACPI: DeviceType
ACPI Device Path.
This Device Path is used to describe devices whose enumeration is not described in an industry-standard fashion. These devices must be described using ACPI AML in the ACPI namespace; this Device Path is a linkage to the ACPI namespace.
Sourcepub const MESSAGING: DeviceType
pub const MESSAGING: DeviceType
Messaging Device Path.
This Device Path is used to describe the connection of devices outside the resource domain of the system. This Device Path can describe physical messaging information such as a SCSI ID, or abstract information such as networking protocol IP addresses.
Sourcepub const MEDIA: DeviceType
pub const MEDIA: DeviceType
Media Device Path.
This Device Path is used to describe the portion of a medium that is being abstracted by a boot service. For example, a Media Device Path could define which partition on a hard drive was being used.
Sourcepub const BIOS_BOOT_SPEC: DeviceType
pub const BIOS_BOOT_SPEC: DeviceType
BIOS Boot Specification Device Path.
This Device Path is used to point to boot legacy operating systems; it is based on the BIOS Boot Specification Version 1.01.
Sourcepub const END: DeviceType
pub const END: DeviceType
End of Hardware Device Path.
Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.
Trait Implementations§
Source§impl Clone for DeviceType
impl Clone for DeviceType
Source§fn clone(&self) -> DeviceType
fn clone(&self) -> DeviceType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more