pub struct WeakReceiver<T> {
pub(crate) channel: Arc<Channel<T>>,
}Expand description
A Receiver that does not prevent the channel from being closed.
This is created through the Receiver::downgrade method. In order to use it, it needs
to be upgraded into a Receiver through the upgrade method.
Fields§
§channel: Arc<Channel<T>>Implementations§
Source§impl<T> WeakReceiver<T>
impl<T> WeakReceiver<T>
Trait Implementations§
Source§impl<T> Clone for WeakReceiver<T>
impl<T> Clone for WeakReceiver<T>
Auto Trait Implementations§
impl<T> Freeze for WeakReceiver<T>
impl<T> RefUnwindSafe for WeakReceiver<T>
impl<T> Send for WeakReceiver<T>where
T: Send,
impl<T> Sync for WeakReceiver<T>where
T: Send,
impl<T> Unpin for WeakReceiver<T>
impl<T> UnwindSafe for WeakReceiver<T>
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