pub enum ResolveUefiDeviceError {
ResolveLogger(ResolveError),
ResolveNvramStorage(ResolveError),
ResolveWatchdogPlatform(ResolveError),
ResolveVsmConfig(ResolveError),
ResolveTimeSource(ResolveError),
Init(UefiInitError),
}Expand description
Errors that can occur while resolving a UEFI device handle.
Variants§
ResolveLogger(ResolveError)
Failed to resolve the UEFI logger.
ResolveNvramStorage(ResolveError)
Failed to resolve the UEFI NVRAM storage.
ResolveWatchdogPlatform(ResolveError)
Failed to resolve the UEFI watchdog platform.
ResolveVsmConfig(ResolveError)
Failed to resolve the UEFI VSM configuration.
ResolveTimeSource(ResolveError)
Failed to resolve the UEFI time source.
Init(UefiInitError)
Failed to initialize the UEFI device.
Trait Implementations§
Source§impl Debug for ResolveUefiDeviceError
impl Debug for ResolveUefiDeviceError
Source§impl Display for ResolveUefiDeviceError
impl Display for ResolveUefiDeviceError
Source§impl Error for ResolveUefiDeviceError
impl Error for ResolveUefiDeviceError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<UefiInitError> for ResolveUefiDeviceError
impl From<UefiInitError> for ResolveUefiDeviceError
Source§fn from(source: UefiInitError) -> Self
fn from(source: UefiInitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ResolveUefiDeviceError
impl !RefUnwindSafe for ResolveUefiDeviceError
impl Send for ResolveUefiDeviceError
impl Sync for ResolveUefiDeviceError
impl Unpin for ResolveUefiDeviceError
impl UnsafeUnpin for ResolveUefiDeviceError
impl !UnwindSafe for ResolveUefiDeviceError
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