pub trait DsbEmitter<T0> {
// Required method
fn dsb(&mut self, barrier_op: T0);
}Expand description
Emits the DSB instruction.
Assembly forms: DSB #BARRIER_OP.
Operands: barrier_op.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".