pub enum IOp {
Add,
Sub,
Mul,
}Expand description
The integer binary operation of a fused two-buffer MicroOp::ArrLoad2:
frame[dst] = a[i-1] <op> b[j-1], the two elements loaded from two
(possibly distinct) pinned 8-byte int buffers. Add/Mul commute; Sub does
not (it only fuses a[i] - b[j]).
Variants§
Implementations§
Trait Implementations§
impl Copy for IOp
impl Eq for IOp
impl StructuralPartialEq for IOp
Auto Trait Implementations§
impl Freeze for IOp
impl RefUnwindSafe for IOp
impl Send for IOp
impl Sync for IOp
impl Unpin for IOp
impl UnsafeUnpin for IOp
impl UnwindSafe for IOp
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