pub enum TryRecvError {
Empty,
Disconnected,
}
Expand description
An error which can occur when receiving on a closed or empty channel.
Variants§
Empty
This channel is currently empty, but the Sender(s) have not yet disconnected, so data may yet become available.
Disconnected
The channel’s sending half has become disconnected, and there will never be any more data received on it.
Implementations§
Source§impl TryRecvError
impl TryRecvError
Sourcepub fn is_empty(self) -> bool
pub fn is_empty(self) -> bool
Returns true
if the error is TryRecvError::Empty
.
Sourcepub fn is_disconnected(self) -> bool
pub fn is_disconnected(self) -> bool
Returns true
if the error is TryRecvError::Disconnected
.
Trait Implementations§
Source§impl Clone for TryRecvError
impl Clone for TryRecvError
Source§fn clone(&self) -> TryRecvError
fn clone(&self) -> TryRecvError
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TryRecvError
impl Debug for TryRecvError
Source§impl Display for TryRecvError
impl Display for TryRecvError
Source§impl PartialEq for TryRecvError
impl PartialEq for TryRecvError
impl Copy for TryRecvError
impl Eq for TryRecvError
impl StructuralPartialEq for TryRecvError
Auto Trait Implementations§
impl Freeze for TryRecvError
impl RefUnwindSafe for TryRecvError
impl Send for TryRecvError
impl Sync for TryRecvError
impl Unpin for TryRecvError
impl UnwindSafe for TryRecvError
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)