pub enum InitError {
HandoffInvalid(HandoffError),
UnsupportedNic(u8),
NicInitFailed,
UnsupportedBlockDevice(u8),
BlockDeviceInitFailed,
DmaSetupFailed,
}Expand description
Post-EBS initialization error.
Variants§
HandoffInvalid(HandoffError)
Handoff validation failed
UnsupportedNic(u8)
Unsupported NIC type
NicInitFailed
NIC initialization failed
UnsupportedBlockDevice(u8)
Unsupported block device type
BlockDeviceInitFailed
Block device initialization failed
DmaSetupFailed
DMA region setup failed
Trait Implementations§
Source§impl From<HandoffError> for InitError
impl From<HandoffError> for InitError
Source§fn from(e: HandoffError) -> Self
fn from(e: HandoffError) -> Self
Converts to this type from the input type.
impl Copy for InitError
impl Eq for InitError
impl StructuralPartialEq for InitError
Auto Trait Implementations§
impl Freeze for InitError
impl RefUnwindSafe for InitError
impl Send for InitError
impl Sync for InitError
impl Unpin for InitError
impl UnwindSafe for InitError
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