Trait Exp

Source
pub trait Exp {
    // Required method
    fn exp(self) -> Self;
}
Expand description

Exponential function

Required Methods§

Source

fn exp(self) -> Self

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 Exp for f32

Source§

fn exp(self) -> Self

Source§

impl Exp for f64

Source§

fn exp(self) -> Self

Source§

impl<U> Exp for FixedI8<U>
where U: 'static + Unsigned + IsLessOrEqual<U8, Output = True> + IsLessOrEqual<U6, Output = True> + IsLessOrEqual<U5, Output = True>,

Source§

fn exp(self) -> Self

Source§

impl<U> Exp for FixedI16<U>
where U: 'static + Unsigned + IsLessOrEqual<U16, Output = True> + IsLessOrEqual<U14, Output = True> + IsLessOrEqual<U13, Output = True>,

Source§

fn exp(self) -> Self

Source§

impl<U> Exp for FixedI32<U>
where U: 'static + Unsigned + IsLessOrEqual<U32, Output = True> + IsLessOrEqual<U30, Output = True> + IsLessOrEqual<U29, Output = True>,

Source§

fn exp(self) -> Self

Source§

impl<U> Exp for FixedI64<U>
where U: 'static + Unsigned + IsLessOrEqual<U64, Output = True> + IsLessOrEqual<U62, Output = True> + IsLessOrEqual<U61, Output = True>,

Source§

fn exp(self) -> Self

Implementors§