Trait PowOps
pub trait PowOps: Sized {
type Float;
// Required methods
fn powi(&self, n: i32) -> Self;
fn powf(&self, f: Self::Float) -> Self;
fn pow(&self, f: Self) -> Self;
fn sqrt(&self) -> Self;
}
Required Associated Types§
type Float
Required Methods§
fn powi(&self, n: i32) -> Self
fn powf(&self, f: Self::Float) -> Self
fn pow(&self, f: Self) -> Self
fn sqrt(&self) -> Self
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.