Trait rugflo::AssignRound [] [src]

pub trait AssignRound<T> {
    type Round;
    type Ordering;
    fn assign_round(&mut self, _: T, _: Self::Round) -> Self::Ordering;
}

Assigns to a number from another value, applying the specified rounding method.

Associated Types

The rounding method.

The direction from rounding.

Required Methods

Peforms the assignment and rounding.

Implementors