pub trait CubicRootRem {
type Output;
// Required method
fn cbrt_rem(&self) -> (Self::Output, Self);
}
Expand description
Computer the floored cubic root of the number and return the remainder at the same time.
Required Associated Types§
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.