pub enum CommonHeaderResult {
Handled,
Unhandled,
Failed(IoError),
}Expand description
Result type for common header emulator operations
Variants§
Handled
The access was handled by the common header emulator
Unhandled
The access is not handled by common header, caller should handle it
Failed(IoError)
The access failed with an error
Trait Implementations§
Source§impl Debug for CommonHeaderResult
impl Debug for CommonHeaderResult
Source§impl PartialEq for CommonHeaderResult
impl PartialEq for CommonHeaderResult
Auto Trait Implementations§
impl Freeze for CommonHeaderResult
impl RefUnwindSafe for CommonHeaderResult
impl Send for CommonHeaderResult
impl Sync for CommonHeaderResult
impl Unpin for CommonHeaderResult
impl UnwindSafe for CommonHeaderResult
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