[−][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> Clone for Error<E>
[src][+]
impl<E: Copy> Copy for Error<E>
[src]
impl<E> Debug for Error<E> where
E: Debug,
[src][+]
E: Debug,
impl<E: Eq> Eq for Error<E>
[src]
impl<E> From<E> for Error<E>
[src][+]
impl<E: Hash> Hash for Error<E>
[src][+]
impl<E: Ord> Ord for Error<E>
[src][+]
impl<E: PartialEq> PartialEq<Error<E>> for Error<E>
[src][+]
impl<E: PartialOrd> PartialOrd<Error<E>> for Error<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,
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>,