Enum gmp_mpfr::Round [] [src]

pub enum Round {
    Nearest,
    Zero,
    Up,
    Down,
    AwayFromZero,
}

The rounding methods for floatin-point values.

Variants

Round towards the nearest.

Round towards zero.

Round towards plus infinity.

Round towards minus infinity.

Round away from zero.

Trait Implementations

impl Clone for Round
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Round
[src]

impl PartialEq for Round
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Round
[src]