Skip to main content

Sinh

Trait Sinh 

Source
pub trait Sinh {
    type Output;

    // Required method
    fn sinh(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn sinh(self) -> Self::Output

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Sinh for f32

Source§

type Output = f32

Source§

fn sinh(self) -> <f32 as Sinh>::Output

Source§

impl Sinh for f64

Source§

type Output = f64

Source§

fn sinh(self) -> <f64 as Sinh>::Output

Implementors§