pub trait ExecutableInstructionOperandswhere
Self: Instruction,{
// Required method
fn get_rs1_rs2_operands(self) -> Rs1Rs2Operands<Self::Reg>;
}Expand description
rs1/rs2 instruction operands
Required Methods§
Sourcefn get_rs1_rs2_operands(self) -> Rs1Rs2Operands<Self::Reg>
fn get_rs1_rs2_operands(self) -> Rs1Rs2Operands<Self::Reg>
rs1/rs2 instruction operands.
Returns zero register for rs1/rs2 that were missing in the original instruction
definition.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".