pub trait ToOpcode { type Opcode; // Required method fn to_opcode(&self) -> Self::Opcode; }
Allows for converting an Op into its associated Opcode.
Op
Opcode
The associated Opcode type.
The opcode associated with this operation.
opcode