pub trait Bounds {
const MIN: f32;
const MAX: f32;
}Expand description
The closed interval a Bounded value lives in. Implemented by empty
marker types (ProgressBounds, ZoomBounds, …).
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.