pub enum FPUOpRI {
UShr32(FPURightShiftImm),
UShr64(FPURightShiftImm),
}
Available on crate feature
arm64
only.Expand description
A floating-point unit (FPU) operation with two args, a register and an immediate.
Variants§
UShr32(FPURightShiftImm)
Unsigned right shift. Rd = Rn << #imm
UShr64(FPURightShiftImm)
Unsigned right shift. Rd = Rn << #imm
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FPUOpRI
impl RefUnwindSafe for FPUOpRI
impl Send for FPUOpRI
impl Sync for FPUOpRI
impl Unpin for FPUOpRI
impl UnwindSafe for FPUOpRI
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