#[non_exhaustive]pub enum FwCfgError {
InvalidSignature,
}Expand description
An enum type for FwCfg errors.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidSignature
Invalid signature returned from QEMU fw_cfg I/O port
Trait Implementations§
Source§impl Debug for FwCfgError
impl Debug for FwCfgError
Source§impl PartialEq for FwCfgError
impl PartialEq for FwCfgError
impl Eq for FwCfgError
impl StructuralPartialEq for FwCfgError
Auto Trait Implementations§
impl Freeze for FwCfgError
impl RefUnwindSafe for FwCfgError
impl Send for FwCfgError
impl Sync for FwCfgError
impl Unpin for FwCfgError
impl UnwindSafe for FwCfgError
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