Powf

Trait Powf 

Source
pub trait Powf {
    // Required method
    fn powf(self, n: Self) -> Self;
}
Expand description

Fractional power function

Required Methods§

Source

fn powf(self, n: 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 Powf for f32

Source§

fn powf(self, n: Self) -> Self

Source§

impl Powf for f64

Source§

fn powf(self, n: Self) -> Self

Source§

impl<U> Powf for FixedI8<U>
where U: Unsigned + IsLessOrEqual<U6, Output = True> + LtU8,

Source§

fn powf(self, _n: Self) -> Self

Source§

impl<U> Powf for FixedI16<U>
where U: Unsigned + IsLessOrEqual<U14, Output = True> + LtU16,

Source§

fn powf(self, _n: Self) -> Self

Source§

impl<U> Powf for FixedI32<U>
where U: Unsigned + IsLessOrEqual<U30, Output = True> + LtU32,

Source§

fn powf(self, _n: Self) -> Self

Source§

impl<U> Powf for FixedI64<U>
where U: Unsigned + IsLessOrEqual<U62, Output = True> + LtU64,

Source§

fn powf(self, _n: Self) -> Self

Implementors§