pub trait FeatureFlags {
const SUPPORTS_PARALLEL: bool;
const SUPPORTS_GPU: bool;
const REQUIRES_BLAS: bool;
const MEMORY_INTENSIVE: bool;
}Expand description
Type-level feature flag validation
Required Associated Constants§
const SUPPORTS_PARALLEL: bool
const SUPPORTS_GPU: bool
const REQUIRES_BLAS: bool
const MEMORY_INTENSIVE: bool
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.