pub trait SingleInstructionAddAssign<Rhs = Self> {
// Required method
unsafe fn add_assign(offset: *mut Self, rhs: Rhs);
}
Expand description
An interface for architecture-specific single-instruction add operation.
Required Methods§
Sourceunsafe fn add_assign(offset: *mut Self, rhs: Rhs)
unsafe fn add_assign(offset: *mut Self, rhs: Rhs)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.