pub enum UefiEvent {
BootSuccess(BootInfo),
BootFailure(BootInfo),
NoBootDevice,
}Expand description
A UEFI event that should be surfaced to the host.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UefiEvent
impl RefUnwindSafe for UefiEvent
impl Send for UefiEvent
impl Sync for UefiEvent
impl Unpin for UefiEvent
impl UnsafeUnpin for UefiEvent
impl UnwindSafe for UefiEvent
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