pub trait UnBounded {
const BOUNDS: (f64, f64) = _;
// Provided method
fn in_bounds(_x: Vec<f64>) -> bool { ... }
}
Expand description
This is a trait that ensures consistent implementation of unbounded benchmark functions
Provided 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.