pub enum BinaryOpcode {
Or,
Xor,
And,
Shl,
Shr,
Add,
Sub,
Mul,
Div,
Mod,
}
Variants§
Trait Implementations§
Source§impl Clone for BinaryOpcode
impl Clone for BinaryOpcode
Source§fn clone(&self) -> BinaryOpcode
fn clone(&self) -> BinaryOpcode
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 BinaryOpcode
impl Debug for BinaryOpcode
Auto Trait Implementations§
impl Freeze for BinaryOpcode
impl RefUnwindSafe for BinaryOpcode
impl Send for BinaryOpcode
impl Sync for BinaryOpcode
impl Unpin for BinaryOpcode
impl UnwindSafe for BinaryOpcode
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