pub trait Isqrt {
// Required method
fn isqrt(self) -> Self;
}
Expand description
A trait for calculating the integer square root.
Required Methods§
Sourcefn isqrt(self) -> Self
fn isqrt(self) -> Self
The integer square root.
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.