pub trait AssemblyEmit {
// Required method
fn dump(
&mut self,
address: &Address,
mnemonic: &CxxString,
operands: &CxxString,
);
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".