Struct crossbeam_channel::SendError [−][src]
pub struct SendError<T>(pub T);
An error returned from the send
method.
The message could not be sent because the channel is disconnected.
The error contains the message so it can be recovered.
Implementations
impl<T> SendError<T>
[src]
impl<T> SendError<T>
[src]pub fn into_inner(self) -> T
[src]
Unwraps the message.
Examples
use crossbeam_channel::unbounded; let (s, r) = unbounded(); drop(r); if let Err(err) = s.send("foo") { assert_eq!(err.into_inner(), "foo"); }
Trait Implementations
impl<T> From<SendError<T>> for TrySendError<T>
[src]
impl<T> From<SendError<T>> for TrySendError<T>
[src]fn from(err: SendError<T>) -> TrySendError<T>
[src]
impl<T> From<SendError<T>> for SendTimeoutError<T>
[src]
impl<T> From<SendError<T>> for SendTimeoutError<T>
[src]fn from(err: SendError<T>) -> SendTimeoutError<T>
[src]
impl<T: Copy> Copy for SendError<T>
[src]
impl<T: Eq> Eq for SendError<T>
[src]
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,