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