pub trait Float<T>: Number<T> {
// Required method
fn sqrt(self) -> T;
}Expand description
Trait that specifies that the root of a number can be calculated
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.