pub trait ClampCast:
PartialOrd
+ Copy
+ 'static {
// Provided method
fn clamp_cast<O>(self) -> O
where Self: AsPrimitive<O> + Datum,
O: AsPrimitive<Self> + Bounded + Datum { ... }
}
Provided Methods§
fn clamp_cast<O>(self) -> O
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.