Struct std::sync::mpsc::SendError 1.0.0
[−]
[src]
pub struct SendError<T>(pub T);
An error returned from the 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> Debug for SendError<T>
[src]
impl<T> Display for SendError<T>
[src]
impl<T: Send + Reflect> Error for SendError<T>
[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any.
Derived Implementations
impl<T: Copy> Copy for SendError<T>
[src]
impl<T: Clone> Clone for SendError<T>
[src]
fn clone(&self) -> SendError<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more