[−][src]Enum nb::Error
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]
fn clone(&self) -> Error<E>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[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]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<E: Ord> Ord for Error<E>
[src]
fn cmp(&self, other: &Error<E>) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<E: PartialEq> PartialEq<Error<E>> for Error<E>
[src]
impl<E: PartialOrd> PartialOrd<Error<E>> for Error<E>
[src]
fn partial_cmp(&self, other: &Error<E>) -> Option<Ordering>
[src]
fn lt(&self, other: &Error<E>) -> bool
[src]
fn le(&self, other: &Error<E>) -> bool
[src]
fn gt(&self, other: &Error<E>) -> bool
[src]
fn ge(&self, other: &Error<E>) -> bool
[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,
fn borrow_mut(&mut self) -> &mut T
[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]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,