pub trait OpAssignArbitaryAPI<T, DC, DA>: DeviceAPI<T>{
// Required method
fn assign_arbitary(
&self,
c: &mut Self::Raw,
lc: &Layout<DC>,
a: &Self::Raw,
la: &Layout<DA>,
) -> Result<(), Error>;
}
Required Methods§
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.