Enum otter_api_tests::imports::ordered_float::ParseNotNanError[]

pub enum ParseNotNanError<E> {
    ParseFloatError(E),
    IsNaN,
}

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

impl<E> Clone for ParseNotNanError<E> where
    E: Clone

impl<E> Copy for ParseNotNanError<E> where
    E: Copy

impl<E> Debug for ParseNotNanError<E> where
    E: Debug

impl<E> Display for ParseNotNanError<E> where
    E: Display

impl<E> Eq for ParseNotNanError<E> where
    E: Eq

impl<E> Error for ParseNotNanError<E> where
    E: 'static + Debug + Error

impl<E> PartialEq<ParseNotNanError<E>> for ParseNotNanError<E> where
    E: PartialEq<E>, 

impl<E> StructuralEq for ParseNotNanError<E>

impl<E> StructuralPartialEq for ParseNotNanError<E>

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

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

impl<T> AsFail for T where
    T: Fail

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<A> DynCastExt for A

impl<E> Fail for E where
    E: 'static + Error + Send + Sync

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,