pub enum Datamatch {
AnyLength,
U8(Option<u8>),
U16(Option<u16>),
U32(Option<u32>),
U64(Option<u64>),
}
Expand description
Used in Vm::register_ioevent
to indicate a size and optionally value to match.
Variants§
Auto Trait Implementations§
impl RefUnwindSafe for Datamatch
impl Send for Datamatch
impl Sync for Datamatch
impl Unpin for Datamatch
impl UnwindSafe for Datamatch
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