Enum core::num::flt2dec::decoder::FullDecoded [] [src]

pub enum FullDecoded {
    Nan,
    Infinite,
    Zero,
    Finite(Decoded),
}
Unstable (flt2dec)

: internal routines only exposed for testing

Decoded unsigned value.

Variants

Nan
Unstable (flt2dec)

: internal routines only exposed for testing

Not-a-number.

Infinite
Unstable (flt2dec)

: internal routines only exposed for testing

Infinities, either positive or negative.

Zero
Unstable (flt2dec)

: internal routines only exposed for testing

Zero, either positive or negative.

Finite
Unstable (flt2dec)

: internal routines only exposed for testing

Finite numbers with further decoded fields.

Trait Implementations

Derived Implementations

impl PartialEq for FullDecoded

fn eq(&self, __arg_0: &FullDecoded) -> bool

fn ne(&self, __arg_0: &FullDecoded) -> bool

impl Debug for FullDecoded

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for FullDecoded

fn clone(&self) -> FullDecoded

fn clone_from(&mut self, source: &Self)

impl Copy for FullDecoded