Struct crossbeam_channel::SelectRecvError [] [src]

pub struct SelectRecvError;

An error returned from the Select::recv method.

This error occurs when the selection case doesn't receive a message from the channel. Note that cases enumerated in a selection loop are sometimes simply skipped, so they might fail even if the channel is currently not empty.

Trait Implementations

impl PartialEq for SelectRecvError
[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 SelectRecvError
[src]

impl Clone for SelectRecvError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for SelectRecvError
[src]

impl Debug for SelectRecvError
[src]

[src]

Formats the value using the given formatter.

impl Display for SelectRecvError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for SelectRecvError
[src]

[src]

A short description of the error. Read more

[src]

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