Struct std::sync::mpsc::RecvError 1.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]
impl PartialEq for RecvError
fn eq(&self, other: &RecvError) -> bool
[src]
fn eq(&self, other: &RecvError) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl Eq for RecvError
[src]
impl Eq for RecvError
impl Clone for RecvError
[src]
impl Clone for RecvError
fn clone(&self) -> RecvError
[src]
fn clone(&self) -> RecvError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for RecvError
[src]
impl Copy for RecvError
impl Debug for RecvError
[src]
impl Debug for RecvError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Display for RecvError
[src]
impl Display for RecvError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Error for RecvError
[src]
impl Error for RecvError
fn description(&self) -> &str
[src]
fn description(&self) -> &str
This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>
[src]
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<RecvError> for TryRecvError
1.24.0[src]
impl From<RecvError> for TryRecvError
1.24.0
[src]fn from(err: RecvError) -> TryRecvError
[src]
fn from(err: RecvError) -> TryRecvError
Performs the conversion.
impl From<RecvError> for RecvTimeoutError
1.24.0[src]
impl From<RecvError> for RecvTimeoutError
1.24.0
[src]fn from(err: RecvError) -> RecvTimeoutError
[src]
fn from(err: RecvError) -> RecvTimeoutError
Performs the conversion.