Skip to main content

JmpEmitter

Trait JmpEmitter 

Source
pub trait JmpEmitter<T0> {
    // Required method
    fn jmp(&mut self, target: T0);
}
Expand description

Emits JMP.

Assembly forms: jmp rel8, jmp rel16, jmp rel32.

Required Methods§

Source

fn jmp(&mut self, target: T0)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§