Struct crossbeam_channel::RecvError [] [src]

pub struct RecvError;

An error returned from the Receiver::recv method.

The [recv] operation can only fail if the sending half of a channel is disconnected and the channel is empty, implying that no further messages will ever be received.

Trait Implementations

impl PartialEq for RecvError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for RecvError
[src]

impl Clone for RecvError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for RecvError
[src]

impl Debug for RecvError
[src]

[src]

Formats the value using the given formatter.

impl Display for RecvError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for RecvError
[src]

[src]

A short description of the error. Read more

[src]

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