Trait gmp_mpfr::Pow [] [src]

pub trait Pow<T> {
    type Output;
    fn pow(self, _: T) -> Self::Output;
}

Provides the power operation.

Associated Types

The resulting type after the power operation.

Required Methods

Performs the power operation.

Implementors