pub trait Bounded {
const BOUNDS: (f64, f64);
// Provided method
fn in_bounds(x: Vec<f64>) -> bool { ... }
}Expand description
This is a trait that ensures consistent implementation of bounded benchmark functions
Required Associated Constants§
Provided Methods§
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.