pub trait ReduceFamily:
Send
+ Sync
+ 'static
+ Debug {
type Instruction<P: ReducePrecision>: ReduceInstruction<P, Config = Self::Config>;
type Config: CubeComptime + Send + Sync;
}
Required Associated Types§
type Instruction<P: ReducePrecision>: ReduceInstruction<P, Config = Self::Config>
type Config: CubeComptime + Send + Sync
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.