MixedPow

Trait MixedPow 

Source
pub trait MixedPow {
    // Required method
    fn mixed_pow(&self, power: Self) -> Self;
}

Required Methods§

Source

fn mixed_pow(&self, power: Self) -> Self

Take the exponential, base 10, of 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 MixedPow for f32

Source§

fn mixed_pow(&self, power: f32) -> Self

Source§

impl MixedPow for f64

Source§

fn mixed_pow(&self, power: f64) -> Self

Implementors§