pub enum IsoBootError {
Storage(IsoError),
MountFailed,
NoBootImage,
KernelNotFound,
KernelReadFailed,
InitrdNotFound,
InitrdReadFailed,
BootFailed(BootError),
}Expand description
Error during ISO boot process
Variants§
Storage(IsoError)
ISO storage error
MountFailed
Failed to mount ISO filesystem
NoBootImage
No bootable image in ISO
KernelNotFound
Failed to find kernel
KernelReadFailed
Failed to read kernel
InitrdNotFound
Failed to find initrd
InitrdReadFailed
Failed to read initrd
BootFailed(BootError)
Boot process failed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IsoBootError
impl RefUnwindSafe for IsoBootError
impl Send for IsoBootError
impl Sync for IsoBootError
impl Unpin for IsoBootError
impl UnwindSafe for IsoBootError
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