Skip to main content

Cosh

Trait Cosh 

Source
pub trait Cosh {
    type Output;

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

Required Associated Types§

Required Methods§

Source

fn cosh(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 Cosh for f32

Source§

type Output = f32

Source§

fn cosh(self) -> <f32 as Cosh>::Output

Source§

impl Cosh for f64

Source§

type Output = f64

Source§

fn cosh(self) -> <f64 as Cosh>::Output

Implementors§