Enum FPUOpRIMod
pub enum FPUOpRIMod {
Sli32(FPULeftShiftImm),
Sli64(FPULeftShiftImm),
}
Expand description
A floating-point unit (FPU) operation with two args, a register and an immediate that modifies its dest (so takes that input value as a separate virtual register).
Variants§
Sli32(FPULeftShiftImm)
Shift left and insert. Rd |= Rn << #imm
Sli64(FPULeftShiftImm)
Shift left and insert. Rd |= Rn << #imm
Trait Implementations§
§impl Clone for FPUOpRIMod
impl Clone for FPUOpRIMod
§fn clone(&self) -> FPUOpRIMod
fn clone(&self) -> FPUOpRIMod
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 more§impl Debug for FPUOpRIMod
impl Debug for FPUOpRIMod
impl Copy for FPUOpRIMod
Auto Trait Implementations§
impl Freeze for FPUOpRIMod
impl RefUnwindSafe for FPUOpRIMod
impl Send for FPUOpRIMod
impl Sync for FPUOpRIMod
impl Unpin for FPUOpRIMod
impl UnwindSafe for FPUOpRIMod
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)