pub trait DeviceOp_MutA_API<T, D, F>: DeviceAPI<T>{
// Required method
fn op_muta_func(
&self,
a: &mut Self::Raw,
la: &Layout<D>,
f: &mut F,
) -> 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.