Enum ordered_float::ParseNotNanError [−][src]
pub enum ParseNotNanError<E> {
    ParseFloatError(E),
    IsNaN,
}Expand description
An error indicating a parse error from a string for NotNan.
Variants
ParseFloatError(E)
A plain parse error from the underlying float type.
IsNaN
The parsed float value resulted in a NaN.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<E> RefUnwindSafe for ParseNotNanError<E> where
    E: RefUnwindSafe, 
impl<E> Send for ParseNotNanError<E> where
    E: Send, 
impl<E> Sync for ParseNotNanError<E> where
    E: Sync, 
impl<E> Unpin for ParseNotNanError<E> where
    E: Unpin, 
impl<E> UnwindSafe for ParseNotNanError<E> where
    E: UnwindSafe, 
Blanket Implementations
Mutably borrows from an owned value. Read more
