Struct sp_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 From<RecvError> for TryRecvError
1.24.0[src]
impl From<RecvError> for TryRecvError
1.24.0[src]pub fn from(err: RecvError) -> TryRecvError
[src]
Converts a RecvError
into a TryRecvError
.
This conversion always returns TryRecvError::Disconnected
.
No data is allocated on the heap.
impl From<RecvError> for RecvTimeoutError
1.24.0[src]
impl From<RecvError> for RecvTimeoutError
1.24.0[src]pub fn from(err: RecvError) -> RecvTimeoutError
[src]
Converts a RecvError
into a RecvTimeoutError
.
This conversion always returns RecvTimeoutError::Disconnected
.
No data is allocated on the heap.