pub enum Opcode {
Show 24 variants
Add,
Sub,
Mul,
Div,
Mod,
BitAnd,
BitOr,
BitXor,
BitLeft,
BitRight,
BitNot,
TestEq,
TestNeq,
TestGt,
TestGtEq,
TestLt,
TestLtEq,
Not,
Or,
And,
Jmp,
Set,
Call,
Ret,
}
Variants§
Add
Sub
Mul
Div
Mod
BitAnd
BitOr
BitXor
BitLeft
BitRight
BitNot
TestEq
TestNeq
TestGt
TestGtEq
TestLt
TestLtEq
Not
Or
And
Jmp
Set
Call
Ret
Trait Implementations§
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