Powf

Trait Powf 

Source
pub trait Powf<T> {
    type Output;

    // Required method
    fn powf(&self, other: T) -> Self::Output;
}
Expand description

Overload the Powf trait.

Required Associated Types§

Source

type Output

Return type of Powf

Required Methods§

Source

fn powf(&self, other: T) -> Self::Output

Overloaded powf function.

Implementations on Foreign Types§

Source§

impl<'v> Powf<Variable<'v>> for f64

Source§

type Output = Variable<'v>

Source§

fn powf(&self, other: Variable<'v>) -> <f64 as Powf<Variable<'v>>>::Output

Implementors§

Source§

impl<'v> Powf<f64> for Variable<'v>

Source§

impl<'v> Powf<Variable<'v>> for Variable<'v>