[][src]Enum gmp_mpfr_sys::mpfr::rnd_t

#[repr(C)]pub enum rnd_t {
    RNDN,
    RNDZ,
    RNDU,
    RNDD,
    RNDA,
    RNDF,
    // some variants omitted
}

See: mpfr_rnd_t

Planned change

In the next major version of the crate (version 2), this enum will be replaced by a type alias to c_int. The variants will be replaced by constants, for example rnd_t::RNDN will be replaced by a constant RNDN of type c_int.

Variants

RNDN

See: Rounding Modes

Planned change

In the next major version of the crate (version 2), the enum will be removed. This variant will be replaced by a constant RNDN of type c_int.

RNDZ

See: Rounding Modes

Planned change

In the next major version of the crate (version 2), the enum will be removed. This variant will be replaced by a constant RNDZ of type c_int.

RNDU

See: Rounding Modes

Planned change

In the next major version of the crate (version 2), the enum will be removed. This variant will be replaced by a constant RNDU of type c_int.

RNDD

See: Rounding Modes

Planned change

In the next major version of the crate (version 2), the enum will be removed. This variant will be replaced by a constant RNDD of type c_int.

RNDA

See: Rounding Modes

Planned change

In the next major version of the crate (version 2), the enum will be removed. This variant will be replaced by a constant RNDA of type c_int.

RNDF

See: Rounding Modes

Planned change

In the next major version of the crate (version 2), the enum will be removed. This variant will be replaced by a constant RNDF of type c_int.

Trait Implementations

impl Clone for rnd_t[src]

impl Copy for rnd_t[src]

impl Debug for rnd_t[src]

Auto Trait Implementations

impl Send for rnd_t

impl Sync for rnd_t

impl Unpin for rnd_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.