pub trait PlatformInstance:
PartialEq
+ Eq
+ Clone
+ Copy
+ Send
+ Sync
+ Debug {
// Required method
fn select(size_hint: usize) -> Self;
}Expand description
A ha-ndarray platform
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.
Implementors§
impl PlatformInstance for Platform
Available on non-crate feature
opencl only.