Struct tchannel::SendError [] [src]

pub struct SendError<T>(pub T);

This error will be returned if the receiving side of the channel is disconnected, while trying to send a value across the channel.

Trait Implementations

impl<T: Debug> Debug for SendError<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: Copy> Copy for SendError<T>
[src]

impl<T: Clone> Clone for SendError<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Eq> Eq for SendError<T>
[src]

impl<T: PartialEq> PartialEq for SendError<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.