Struct std::sync::mpsc::RecvError1.0.0 [] [src]

pub struct RecvError;

An error returned from the recv function on a Receiver.

The recv operation can only fail if the sending half of a channel (or sync_channel) is disconnected, implying that no further messages will ever be received.

Trait Implementations

impl PartialEq for RecvError
[src]

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

This method tests for !=.

impl Eq for RecvError
[src]

impl Clone for RecvError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for RecvError
[src]

impl Debug for RecvError
[src]

Formats the value using the given formatter. Read more

impl Display for RecvError
[src]

Formats the value using the given formatter. Read more

impl Error for RecvError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<RecvError> for TryRecvError
1.24.0
[src]

Performs the conversion.

impl From<RecvError> for RecvTimeoutError
1.24.0
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for RecvError

impl Sync for RecvError