pub enum OpValue {
Reg(u8),
Prfop(u8),
ImmShift {
mask: bool,
shift: u8,
},
}Variants§
Trait Implementations§
impl Copy for OpValue
impl Eq for OpValue
impl StructuralPartialEq for OpValue
Auto Trait Implementations§
impl Freeze for OpValue
impl RefUnwindSafe for OpValue
impl Send for OpValue
impl Sync for OpValue
impl Unpin for OpValue
impl UnwindSafe for OpValue
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