Struct std::sync::mpsc::SendError 1.0.0[−][src]
pub struct SendError<T>(pub T);
An error returned from the Sender::send
or SyncSender::send
function on channels.
A send operation can only fail if the receiving end of a channel is disconnected, implying that the data could never be received. The error contains the data being sent as a payload so it can be recovered.
Trait Implementations
impl<T: PartialEq> PartialEq for SendError<T>
[src]
impl<T: PartialEq> PartialEq for SendError<T>
fn eq(&self, other: &SendError<T>) -> bool
[src]
fn eq(&self, other: &SendError<T>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &SendError<T>) -> bool
[src]
fn ne(&self, other: &SendError<T>) -> bool
This method tests for !=
.
impl<T: Eq> Eq for SendError<T>
[src]
impl<T: Eq> Eq for SendError<T>
impl<T: Clone> Clone for SendError<T>
[src]
impl<T: Clone> Clone for SendError<T>
fn clone(&self) -> SendError<T>
[src]
fn clone(&self) -> SendError<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<T: Copy> Copy for SendError<T>
[src]
impl<T: Copy> Copy for SendError<T>
impl<T> Debug for SendError<T>
[src]
impl<T> Debug for SendError<T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<T> Display for SendError<T>
[src]
impl<T> Display for SendError<T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<T: Send> Error for SendError<T>
[src]
impl<T: Send> Error for SendError<T>
fn description(&self) -> &str
[src]
fn description(&self) -> &str
This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>
[src]
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl<T> From<SendError<T>> for TrySendError<T>
1.24.0[src]
impl<T> From<SendError<T>> for TrySendError<T>
1.24.0
[src]fn from(err: SendError<T>) -> TrySendError<T>
[src]
fn from(err: SendError<T>) -> TrySendError<T>
Performs the conversion.