pub trait MixedTanh {
// Required methods
fn mixed_tanh(&self) -> Self;
fn mixed_atanh(&self) -> Self;
}Required Methods§
Sourcefn mixed_tanh(&self) -> Self
fn mixed_tanh(&self) -> Self
Take the hyperbolic tangent (tanh) of self. Implementation varies with type.
Sourcefn mixed_atanh(&self) -> Self
fn mixed_atanh(&self) -> Self
Take the inverse hyperbolic tangent (atanh) of self. Implementation varies with type.
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.