pub enum EfiStubError {
Unsupported,
LoadImage(usize),
HandleProtocol(usize),
AllocateCommandLine(usize),
AllocateInitrd(&'static str, usize),
InstallProtocol(&'static str, usize),
StartImage(usize),
}Variants§
Unsupported
LoadImage(usize)
HandleProtocol(usize)
AllocateCommandLine(usize)
AllocateInitrd(&'static str, usize)
InstallProtocol(&'static str, usize)
StartImage(usize)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EfiStubError
impl RefUnwindSafe for EfiStubError
impl Send for EfiStubError
impl Sync for EfiStubError
impl Unpin for EfiStubError
impl UnwindSafe for EfiStubError
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