pub trait Float:
Float
+ FloatConst
+ Div<Output = Self>
+ Num {
// Provided method
fn lerp(self, rhs: Self, t: Self) -> Self { ... }
}Expand description
Floating point component type
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".