Enum capstone_sys::m68k_fpu_size
source · #[repr(u32)]pub enum m68k_fpu_size {
M68K_FPU_SIZE_NONE = 0,
M68K_FPU_SIZE_SINGLE = 4,
M68K_FPU_SIZE_DOUBLE = 8,
M68K_FPU_SIZE_EXTENDED = 12,
}
Expand description
Operation size of the FPU instructions (Notice that FPU instruction can also use CPU sizes if needed)
Variants§
M68K_FPU_SIZE_NONE = 0
< unsized like fsave/frestore
M68K_FPU_SIZE_SINGLE = 4
< 4 byte in size (single float)
M68K_FPU_SIZE_DOUBLE = 8
< 8 byte in size (double)
M68K_FPU_SIZE_EXTENDED = 12
< 12 byte in size (extended real format)
Trait Implementations§
source§impl Clone for m68k_fpu_size
impl Clone for m68k_fpu_size
source§fn clone(&self) -> m68k_fpu_size
fn clone(&self) -> m68k_fpu_size
Returns a copy 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 m68k_fpu_size
impl Debug for m68k_fpu_size
source§impl Hash for m68k_fpu_size
impl Hash for m68k_fpu_size
source§impl PartialEq for m68k_fpu_size
impl PartialEq for m68k_fpu_size
source§fn eq(&self, other: &m68k_fpu_size) -> bool
fn eq(&self, other: &m68k_fpu_size) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for m68k_fpu_size
impl Eq for m68k_fpu_size
impl StructuralPartialEq for m68k_fpu_size
Auto Trait Implementations§
impl RefUnwindSafe for m68k_fpu_size
impl Send for m68k_fpu_size
impl Sync for m68k_fpu_size
impl Unpin for m68k_fpu_size
impl UnwindSafe for m68k_fpu_size
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