pub trait MixedSinh {
// Required methods
fn mixed_sinh(&self) -> Self;
fn mixed_asinh(&self) -> Self;
}Required Methods§
Sourcefn mixed_sinh(&self) -> Self
fn mixed_sinh(&self) -> Self
Take the hyperbolic sin of self. Implementation varies with type.
Sourcefn mixed_asinh(&self) -> Self
fn mixed_asinh(&self) -> Self
Take the inverse hyperbolic sin 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.