Enum async_std::channel::TrySendError [−][src]
pub enum TrySendError<T> {
Full(T),
Closed(T),
}Expand description
An error returned from Sender::try_send().
Variants
Full(T)
The channel is full but not closed.
Closed(T)
The channel is closed.
Implementations
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<T> RefUnwindSafe for TrySendError<T> where
T: RefUnwindSafe,
impl<T> Send for TrySendError<T> where
T: Send,
impl<T> Sync for TrySendError<T> where
T: Sync,
impl<T> Unpin for TrySendError<T> where
T: Unpin,
impl<T> UnwindSafe for TrySendError<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more