pub enum Opcode {
EqualsEquals,
Equals,
Greater,
Less,
GreaterEquals,
LessEquals,
Add,
Subtract,
Multiply,
Divide,
}Variants§
EqualsEquals
The == operator.
Equals
The = operator.
Greater
The > operator.
Less
The < operator.
GreaterEquals
The >= operator.
LessEquals
The <= operator.
Add
The + operator.
Subtract
The - operator.
Multiply
The - operator.
Divide
The / operator.
Implementations§
Trait Implementations§
impl Copy for Opcode
impl StructuralPartialEq for Opcode
Auto Trait Implementations§
impl Freeze for Opcode
impl RefUnwindSafe for Opcode
impl Send for Opcode
impl Sync for Opcode
impl Unpin for Opcode
impl UnwindSafe for Opcode
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