DeviceOp_MutC_RefA_NumB_API

Trait DeviceOp_MutC_RefA_NumB_API 

Source
pub trait DeviceOp_MutC_RefA_NumB_API<TA, TB, TC, D, F>: DeviceAPI<TA> + DeviceAPI<TC>
where D: DimAPI, F: FnMut(&mut TC, &TA, &TB) + ?Sized,
{ // Required method fn op_mutc_refa_numb_func( &self, c: &mut Self::Raw, lc: &Layout<D>, a: &Self::Raw, la: &Layout<D>, b: TB, f: &mut F, ) -> Result<(), Error>; }

Required Methods§

Source

fn op_mutc_refa_numb_func( &self, c: &mut Self::Raw, lc: &Layout<D>, a: &Self::Raw, la: &Layout<D>, b: TB, 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.

Implementors§

Source§

impl<TA, TB, TC, D, F> DeviceOp_MutC_RefA_NumB_API<TA, TB, TC, D, F> for DeviceOpenBLAS
where TA: Clone + Send + Sync, TB: Clone + Send + Sync, TC: Clone + Send + Sync, D: DimAPI, F: Fn(&mut TC, &TA, &TB) + ?Sized + Send + Sync,

Source§

impl<TA, TB, TC, D, F> DeviceOp_MutC_RefA_NumB_API<TA, TB, TC, D, F> for DeviceCpuSerial
where TA: Clone, TC: Clone, D: DimAPI, F: FnMut(&mut TC, &TA, &TB) + ?Sized,