[][src]Enum scambio::Error

pub enum Error<T> {
    Closed(T),
    AtCapacity(T),
}

Possible errors when exchanging data.

Variants

Closed(T)

The other end of the exchange has been dropped.

AtCapacity(T)

The exchange has no more capacity to hold a data item.

Implementations

impl<T> Error<T>[src]

pub fn is_closed(&self) -> bool[src]

Is this an Error::Closed?

pub fn is_full(&self) -> bool[src]

Is this an Error::AtCapacity?

pub fn into_data(self) -> T[src]

Consume this error and return the data item.

Trait Implementations

impl<T: Clone> Clone for Error<T>[src]

impl<T> Debug for Error<T>[src]

impl<T> Display for Error<T>[src]

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

Auto Trait Implementations

impl<T> RefUnwindSafe for Error<T> where
    T: RefUnwindSafe

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

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

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

impl<T> UnwindSafe for Error<T> where
    T: UnwindSafe

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<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.