pub trait ReduceDType {
type In: Numeric;
type SizeIn: Size;
type Out: Numeric;
type SizeOut: Size;
}Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".