#[non_exhaustive]pub enum Node {
Hardware(Hardware),
Acpi(Acpi),
Messaging(Messaging),
Media(Media),
Bios(Bios),
}Expand description
Device Path types as defined in UEFI specification
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Hardware(Hardware)
Hardware device path
Acpi(Acpi)
ACPI device path
Messaging(Messaging)
Messaging device path
Media(Media)
Media device path
Bios(Bios)
BIOS device path
Trait Implementations§
impl Eq for Node
impl StructuralPartialEq for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more