[][src]Enum nb::Error

pub enum Error<E> {
    Other(E),
    WouldBlock,
}

A non-blocking error

The main use of this enum is to add a WouldBlock variant to an existing error enum.

Variants

Other(E)

A different kind of error

WouldBlock

This operation requires blocking behavior to complete

Implementations

impl<E> Error<E>[src]

pub fn map<T, F>(self, op: F) -> Error<T> where
    F: FnOnce(E) -> T, 
[src]

Maps an Error<E> to Error<T> by applying a function to a contained Error::Other value, leaving an Error::WouldBlock value untouched.

Trait Implementations

impl<E> Clone for Error<E> where
    E: Clone
[src]

impl<E> Copy for Error<E> where
    E: Copy
[src]

impl<E> Debug for Error<E> where
    E: Debug
[src]

impl<E> Eq for Error<E> where
    E: Eq
[src]

impl<E> From<E> for Error<E>[src]

impl<E> Hash for Error<E> where
    E: Hash
[src]

impl<E> Ord for Error<E> where
    E: Ord
[src]

impl<E> PartialEq<Error<E>> for Error<E> where
    E: PartialEq<E>, 
[src]

impl<E> PartialOrd<Error<E>> for Error<E> where
    E: PartialOrd<E>, 
[src]

impl<E> StructuralEq for Error<E>[src]

impl<E> StructuralPartialEq for Error<E>[src]

Auto Trait Implementations

impl<E> Send for Error<E> where
    E: Send

impl<E> Sync for Error<E> where
    E: Sync

impl<E> Unpin for Error<E> where
    E: Unpin

Blanket Implementations

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

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.