Struct async_std::channel::SendError  [−][src]
pub struct SendError<T>(pub T);
An error returned from Sender::send().
Received because the channel is closed.
Implementations
impl<T> SendError<T>[src]
impl<T> SendError<T>[src]pub fn into_inner(self) -> T[src]
Unwraps the message that couldn’t be sent.
Trait Implementations
impl<T> Copy for SendError<T> where
    T: Copy, [src]
T: Copy,
impl<T> Eq for SendError<T> where
    T: Eq, [src]
T: Eq,
impl<T> StructuralEq for SendError<T>[src]
impl<T> StructuralPartialEq for SendError<T>[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for SendError<T> where
    T: RefUnwindSafe, 
T: RefUnwindSafe,
impl<T> Send for SendError<T> where
    T: Send, 
T: Send,
impl<T> Sync for SendError<T> where
    T: Sync, 
T: Sync,
impl<T> Unpin for SendError<T> where
    T: Unpin, 
T: Unpin,
impl<T> UnwindSafe for SendError<T> where
    T: UnwindSafe, 
T: UnwindSafe,