pub trait OpAssignArbitaryAPI<T, DC, DA>{
// Required method
fn assign_arbitary(
&self,
c: &mut <Self as DeviceRawAPI<T>>::Raw,
lc: &Layout<DC>,
a: &<Self as DeviceRawAPI<T>>::Raw,
la: &Layout<DA>,
) -> Result<()>;
}
Required Methods§
Sourcefn assign_arbitary(
&self,
c: &mut <Self as DeviceRawAPI<T>>::Raw,
lc: &Layout<DC>,
a: &<Self as DeviceRawAPI<T>>::Raw,
la: &Layout<DA>,
) -> Result<()>
fn assign_arbitary( &self, c: &mut <Self as DeviceRawAPI<T>>::Raw, lc: &Layout<DC>, a: &<Self as DeviceRawAPI<T>>::Raw, la: &Layout<DA>, ) -> Result<()>
Element-wise assignment in col-major order, without no promise that input layouts are broadcastable.
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.