Struct spmc::SendError1.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> Copy for SendError<T> where T: Copy

impl<T> Clone for SendError<T> where T: Clone

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

impl<T> Eq for SendError<T> where T: Eq

impl<T> PartialEq<SendError<T>> for SendError<T> where T: PartialEq<T>

fn eq(&self, __arg_0: &SendError<T>) -> bool

fn ne(&self, __arg_0: &SendError<T>) -> bool

impl<T> Debug for SendError<T>

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

impl<T> Display for SendError<T>

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

impl<T> Error for SendError<T> where T: Send + Reflect

fn description(&self) -> &str

fn cause(&self) -> Option<&Error>