Enum tokio::sync::mpsc::error::TryRecvError [−][src]
pub enum TryRecvError { Empty, Closed, }
This enumeration is the list of the possible reasons that try_recv could not return data when called.
Variants
This channel is currently empty, but the Sender(s) have not yet disconnected, so data may yet become available.
The channel’s sending half has been closed, and there will never be any more data received on it.
Trait Implementations
impl Error for TryRecvError
[src]
impl Error for TryRecvError
[src]impl PartialEq<TryRecvError> for TryRecvError
[src]
impl PartialEq<TryRecvError> for TryRecvError
[src]