Skip to main content

ClsEmitter

Trait ClsEmitter 

Source
pub trait ClsEmitter<T0, T1> {
    // Required method
    fn cls(&mut self, rd: T0, rn: T1);
}
Expand description

Emits the CLS instruction. Assembly forms: CLS WD, WN; CLS XD, XN; CLS VD.T, VN.T; CLS VD.T, VN.T. Operands: rd, rn.

Required Methods§

Source

fn cls(&mut self, rd: T0, rn: T1)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§