MixedSinh

Trait MixedSinh 

Source
pub trait MixedSinh {
    // Required methods
    fn mixed_sinh(&self) -> Self;
    fn mixed_asinh(&self) -> Self;
}

Required Methods§

Source

fn mixed_sinh(&self) -> Self

Take the hyperbolic sin of self. Implementation varies with type.

Source

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.

Implementations on Foreign Types§

Source§

impl MixedSinh for f32

Source§

fn mixed_sinh(&self) -> Self

Source§

fn mixed_asinh(&self) -> Self

Source§

impl MixedSinh for f64

Source§

fn mixed_sinh(&self) -> Self

Source§

fn mixed_asinh(&self) -> Self

Implementors§