pub trait CallEmitter<T0> {
// Required method
fn call(&mut self, target: T0);
}Expand description
Emits CALL.
Assembly forms: call rel16, call rel32, call r16/m16.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".