pub trait MixedCosh {
// Required methods
fn mixed_cosh(&self) -> Self;
fn mixed_acosh(&self) -> Self;
}Required Methods§
Sourcefn mixed_cosh(&self) -> Self
fn mixed_cosh(&self) -> Self
Take the cosh of self. Implementation varies with type.
Sourcefn mixed_acosh(&self) -> Self
fn mixed_acosh(&self) -> Self
Take the arccosh 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.