pub trait DeviceOp_MutC_RefA_RefB_API<TA, TB, TC, D, F>:
DeviceAPI<TA>
+ DeviceAPI<TB>
+ DeviceAPI<TC>{
// Required method
fn op_mutc_refa_refb_func(
&self,
c: &mut Self::Raw,
lc: &Layout<D>,
a: &Self::Raw,
la: &Layout<D>,
b: &Self::Raw,
lb: &Layout<D>,
f: &mut F,
) -> Result<(), Error>;
}
Required Methods§
fn op_mutc_refa_refb_func( &self, c: &mut Self::Raw, lc: &Layout<D>, a: &Self::Raw, la: &Layout<D>, b: &Self::Raw, lb: &Layout<D>, f: &mut F, ) -> 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.