#[repr(u8)]
pub enum Opcodes {
Show 71 variants POP, RET, BR_TRUE, BR_FALSE, BRANCH, LD_U64, LD_CONST, LD_TRUE, LD_FALSE, COPY_LOC, MOVE_LOC, ST_LOC, MUT_BORROW_LOC, IMM_BORROW_LOC, MUT_BORROW_FIELD, IMM_BORROW_FIELD, CALL, PACK, UNPACK, READ_REF, WRITE_REF, ADD, SUB, MUL, MOD, DIV, BIT_OR, BIT_AND, XOR, OR, AND, NOT, EQ, NEQ, LT, GT, LE, GE, ABORT, NOP, EXISTS, MUT_BORROW_GLOBAL, IMM_BORROW_GLOBAL, MOVE_FROM, MOVE_TO, FREEZE_REF, SHL, SHR, LD_U8, LD_U128, CAST_U8, CAST_U64, CAST_U128, MUT_BORROW_FIELD_GENERIC, IMM_BORROW_FIELD_GENERIC, CALL_GENERIC, PACK_GENERIC, UNPACK_GENERIC, EXISTS_GENERIC, MUT_BORROW_GLOBAL_GENERIC, IMM_BORROW_GLOBAL_GENERIC, MOVE_FROM_GENERIC, MOVE_TO_GENERIC, VEC_PACK, VEC_LEN, VEC_IMM_BORROW, VEC_MUT_BORROW, VEC_PUSH_BACK, VEC_POP_BACK, VEC_UNPACK, VEC_SWAP,
}
Expand description

List of opcodes constants.

Variants

POP

RET

BR_TRUE

BR_FALSE

BRANCH

LD_U64

LD_CONST

LD_TRUE

LD_FALSE

COPY_LOC

MOVE_LOC

ST_LOC

MUT_BORROW_LOC

IMM_BORROW_LOC

MUT_BORROW_FIELD

IMM_BORROW_FIELD

CALL

PACK

UNPACK

READ_REF

WRITE_REF

ADD

SUB

MUL

MOD

DIV

BIT_OR

BIT_AND

XOR

OR

AND

NOT

EQ

NEQ

LT

GT

LE

GE

ABORT

NOP

EXISTS

MUT_BORROW_GLOBAL

IMM_BORROW_GLOBAL

MOVE_FROM

MOVE_TO

FREEZE_REF

SHL

SHR

LD_U8

LD_U128

CAST_U8

CAST_U64

CAST_U128

MUT_BORROW_FIELD_GENERIC

IMM_BORROW_FIELD_GENERIC

CALL_GENERIC

PACK_GENERIC

UNPACK_GENERIC

EXISTS_GENERIC

MUT_BORROW_GLOBAL_GENERIC

IMM_BORROW_GLOBAL_GENERIC

MOVE_FROM_GENERIC

MOVE_TO_GENERIC

VEC_PACK

VEC_LEN

VEC_IMM_BORROW

VEC_MUT_BORROW

VEC_PUSH_BACK

VEC_POP_BACK

VEC_UNPACK

VEC_SWAP

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.