pub enum ClassTypes {
SignalingNaN,
QuietNaN,
NegativeInfinity,
NegativeNormal,
NegativeSubnormal,
NegativeZero,
PositiveZero,
PositiveSubnormal,
PositiveNormal,
PositiveInfinity,
}Expand description
A classification of decimal floating point numbers.
Variants§
SignalingNaN
Signaling NaN (not a number).
QuietNaN
Quiet NaN (not a number).
NegativeInfinity
Negative infinity.
NegativeNormal
Negative normal.
NegativeSubnormal
Negative subnormal.
NegativeZero
Negative zero.
PositiveZero
Positive zero.
PositiveSubnormal
Positive subnormal.
PositiveNormal
Positive normal.
PositiveInfinity
Positive infinity.
Trait Implementations§
Source§impl Clone for ClassTypes
impl Clone for ClassTypes
Source§fn clone(&self) -> ClassTypes
fn clone(&self) -> ClassTypes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClassTypes
impl Debug for ClassTypes
Source§impl PartialEq for ClassTypes
impl PartialEq for ClassTypes
impl Copy for ClassTypes
impl Eq for ClassTypes
impl StructuralPartialEq for ClassTypes
Auto Trait Implementations§
impl Freeze for ClassTypes
impl RefUnwindSafe for ClassTypes
impl Send for ClassTypes
impl Sync for ClassTypes
impl Unpin for ClassTypes
impl UnwindSafe for ClassTypes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more