pub trait NumericAccess: Sized{
Show 13 methods
// Provided methods
fn pow(self, exponent: impl Into<Numeric>) -> Numeric { ... }
fn real(self) -> Numeric { ... }
fn imaginary(self) -> Numeric { ... }
fn arg(self) -> Numeric { ... }
fn point(self) -> Point { ... }
fn ln(self) -> Numeric { ... }
fn exp(self) -> Numeric { ... }
fn sin(self) -> Numeric { ... }
fn cos(self) -> Numeric { ... }
fn asin(self) -> Numeric { ... }
fn acos(self) -> Numeric { ... }
fn atan(self) -> Numeric { ... }
fn normalize(self) -> Numeric { ... }
}
Expand description
Trait for accessing numeric functions
Provided 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.