pub trait DeviceBitAndAssignAPI<TA, TB, D>: DeviceAPI<TA> + DeviceAPI<TB>where
TA: BitAndAssign<TB>,
D: DimAPI,{
// Required methods
fn op_muta_refb(
&self,
a: &mut Self::Raw,
la: &Layout<D>,
b: &Self::Raw,
lb: &Layout<D>,
) -> Result<(), Error>;
fn op_muta_numb(
&self,
a: &mut Self::Raw,
la: &Layout<D>,
b: TB,
) -> Result<(), Error>;
}
Required Methods§
fn op_muta_refb( &self, a: &mut Self::Raw, la: &Layout<D>, b: &Self::Raw, lb: &Layout<D>, ) -> Result<(), Error>
fn op_muta_numb( &self, a: &mut Self::Raw, la: &Layout<D>, b: TB, ) -> Result<(), Error>
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.