pub trait DeviceIndexSelectAPI<T, D>: DeviceAPI<T> + DeviceRawAPI<MaybeUninit<T>>{
// Required method
fn index_select(
&self,
c: &mut Self::Raw,
lc: &Layout<D>,
a: &Self::Raw,
la: &Layout<D>,
axis: usize,
indices: &[usize],
) -> 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.