pub enum M68kFpuSize {
None,
Single,
Double,
Extended,
}Expand description
Operation size of the FPU instructions (notice that FPU instruction can also use CPU sizes if needed)
Variants§
Trait Implementations§
Source§impl Clone for M68kFpuSize
impl Clone for M68kFpuSize
Source§fn clone(&self) -> M68kFpuSize
fn clone(&self) -> M68kFpuSize
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 M68kFpuSize
impl Debug for M68kFpuSize
Source§impl From<m68k_fpu_size> for M68kFpuSize
impl From<m68k_fpu_size> for M68kFpuSize
Source§fn from(other: m68k_fpu_size) -> Self
fn from(other: m68k_fpu_size) -> Self
Converts to this type from the input type.
Source§impl Hash for M68kFpuSize
impl Hash for M68kFpuSize
Source§impl PartialEq for M68kFpuSize
impl PartialEq for M68kFpuSize
impl Copy for M68kFpuSize
impl Eq for M68kFpuSize
impl StructuralPartialEq for M68kFpuSize
Auto Trait Implementations§
impl Freeze for M68kFpuSize
impl RefUnwindSafe for M68kFpuSize
impl Send for M68kFpuSize
impl Sync for M68kFpuSize
impl Unpin for M68kFpuSize
impl UnwindSafe for M68kFpuSize
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