pub trait QuantRange:
Clone
+ Debug
+ Send
+ Sync
+ 'static {
const QMIN: f32;
const QMAX: f32;
const BITS: u8;
}Expand description
Marker trait that supplies the clamp constants for a quantization bit-width.
Required Associated Constants§
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.