pub trait Clamp<T> {
// Required method
fn clamp(x: T) -> Self;
}
Expand description
A type to which we can clamp a value of type T.
Implementations are not required to handle NaN
s gracefully.
Required 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.