Trait rugflo::PowRound [] [src]

pub trait PowRound<T, R = Round, O = Ordering> {
    type Output;
    fn pow_round(self, _: T, _: R) -> (Self::Output, O);
}

Provides the power operation inside self with a specified rounding method.

Associated Types

The resulting type after the power operation.

Required Methods

Performs the power operation.

Implementors