pub trait Sqroot {
type Output;
// Required method
fn sqroot(&self) -> Self::Output;
}Expand description
Square Root trait for convenience.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".