[−][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
A different kind of error
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][−]
F: FnOnce(E) -> T,
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][+]
E: Clone,
impl<E> Copy for Error<E> where
E: Copy,
[src]
E: Copy,
impl<E> Debug for Error<E> where
E: Debug,
[src][+]
E: Debug,
impl<E> Eq for Error<E> where
E: Eq,
[src]
E: Eq,
impl<E> From<E> for Error<E>
[src][+]
impl<E> Hash for Error<E> where
E: Hash,
[src][+]
E: Hash,
impl<E> Ord for Error<E> where
E: Ord,
[src][+]
E: Ord,
impl<E> PartialEq<Error<E>> for Error<E> where
E: PartialEq<E>,
[src][+]
E: PartialEq<E>,
impl<E> PartialOrd<Error<E>> for Error<E> where
E: PartialOrd<E>,
[src][+]
E: PartialOrd<E>,
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,
E: Send,
impl<E> Sync for Error<E> where
E: Sync,
E: Sync,
impl<E> Unpin for Error<E> where
E: Unpin,
E: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
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][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,