pub trait NumericAccess: Sized{
// Provided methods
fn pow(self, exponent: impl Into<Numeric>) -> Numeric { ... }
fn real(self) -> Numeric { ... }
fn imaginary(self) -> Numeric { ... }
fn arg(self) -> Numeric { ... }
}Expand description
Trait for accessing numeric functions
Provided Methods§
Object Safety§
This trait is not object safe.