Skip to main content

St1Emitter

Trait St1Emitter 

Source
pub trait St1Emitter<T0, T1> {
    // Required method
    fn st1(&mut self, rs_or_operand_1: T0, addr: T1);
}
Expand description

Emits the ST1 instruction. Assembly forms: ST1 VS.B[#IDX], [XN|SP]; ST1 VS.H[#IDX], [XN|SP]; ST1 VS.S[#IDX], [XN|SP]; ST1 VS.D[#IDX], [XN|SP] (and related forms). Operands: rs_or_operand_1, addr.

Required Methods§

Source

fn st1(&mut self, rs_or_operand_1: T0, addr: T1)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§