pub trait HyperbolicTrigInv: Reals + Exponential {
// Provided methods
fn xacosh(self, iterations: usize) -> Self { ... }
fn xasinh(self, iterations: usize) -> Self { ... }
fn xacsch(self, iterations: usize) -> Self { ... }
fn xasech(self, iterations: usize) -> Self { ... }
fn xatanh(self, iterations: usize) -> Self { ... }
fn xacoth(self, iterations: usize) -> Self { ... }
}
Provided Methods§
fn xacosh(self, iterations: usize) -> Self
fn xasinh(self, iterations: usize) -> Self
fn xacsch(self, iterations: usize) -> Self
fn xasech(self, iterations: usize) -> Self
fn xatanh(self, iterations: usize) -> Self
fn xacoth(self, iterations: usize) -> 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.