pub enum TryRecvError {
Empty,
Closed,
}Variants§
Empty
The send half of the channel has not yet sent a value.
Closed
The send half of the channel was dropped without sending a value.
Trait Implementations§
Source§impl Debug for TryRecvError
impl Debug for TryRecvError
Source§impl PartialEq for TryRecvError
impl PartialEq 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 UnsafeUnpin for TryRecvError
impl UnwindSafe for TryRecvError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more