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§

source

fn select(size_hint: usize) -> Self

Select a specific sub-platform based on data size.

Object Safety§

This trait is not object safe.

Implementors§