Enum gmp_mpfr_sys::mpfr::rnd_t
source · #[repr(C)]pub enum rnd_t {
RNDN = 0,
RNDZ = 1,
RNDU = 2,
RNDD = 3,
RNDA = 4,
RNDF = 5,
// some variants omitted
}
Expand description
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 = 0
See: Rounding
§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 = 1
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 = 2
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 = 3
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 = 4
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 = 5
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
.