pub trait QuantRange:
Sealed
+ Clone
+ Debug
+ Send
+ Sync
+ 'static {
const QMIN: f32;
const QMAX: f32;
const BITS: u8;
}Expand description
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".