pub enum M68kOpSize {
Cpu(M68kCpuSize),
Fpu(M68kFpuSize),
}Expand description
Operation size of the current instruction (NOT the actually size of instruction)
Variants§
Cpu(M68kCpuSize)
Fpu(M68kFpuSize)
Trait Implementations§
Source§impl Clone for M68kOpSize
impl Clone for M68kOpSize
Source§fn clone(&self) -> M68kOpSize
fn clone(&self) -> M68kOpSize
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for M68kOpSize
impl Debug for M68kOpSize
Source§impl Hash for M68kOpSize
impl Hash for M68kOpSize
Source§impl PartialEq for M68kOpSize
impl PartialEq for M68kOpSize
impl Copy for M68kOpSize
impl Eq for M68kOpSize
impl StructuralPartialEq for M68kOpSize
Auto Trait Implementations§
impl Freeze for M68kOpSize
impl RefUnwindSafe for M68kOpSize
impl Send for M68kOpSize
impl Sync for M68kOpSize
impl Unpin for M68kOpSize
impl UnwindSafe for M68kOpSize
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