Struct WeakUnboundedSender
pub struct WeakUnboundedSender<T> { /* private fields */ }
An unbounded sender that does not prevent the channel from being closed.
If all UnboundedSender instances of a channel were dropped and only
WeakUnboundedSender instances remain, the channel is closed.
In order to send messages, the WeakUnboundedSender needs to be upgraded using
WeakUnboundedSender::upgrade, which returns Option<UnboundedSender>. It returns None
if all UnboundedSenders have been dropped, and otherwise it returns an UnboundedSender.
Examples
use unbounded_channel;
#
# async
Implementations
impl<T> WeakUnboundedSender<T>
fn upgrade(&self) -> Option<UnboundedSender<T>>Tries to convert a
WeakUnboundedSenderinto anUnboundedSender. This will returnSomeif there are otherSenderinstances alive and the channel wasn't previously dropped, otherwiseNoneis returned.fn strong_count(&self) -> usizeReturns the number of
UnboundedSenderhandles.fn weak_count(&self) -> usizeReturns the number of
WeakUnboundedSenderhandles.
Trait Implementations
impl<T> Clone for WeakUnboundedSender<T>
fn clone(&self) -> Self
impl<T> Debug for WeakUnboundedSender<T>
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result
impl<T> Drop for WeakUnboundedSender<T>
fn drop(&mut self)
Auto Trait Implementations
impl<T> Freeze for WeakUnboundedSender<T>
where
Arc<Chan<T, Semaphore>>: Freeze,
impl<T> RefUnwindSafe for WeakUnboundedSender<T>
where
Arc<Chan<T, Semaphore>>: RefUnwindSafe,
impl<T> Send for WeakUnboundedSender<T>
where
Arc<Chan<T, Semaphore>>: Send,
impl<T> Sync for WeakUnboundedSender<T>
where
Arc<Chan<T, Semaphore>>: Sync,
impl<T> Unpin for WeakUnboundedSender<T>
where
Arc<Chan<T, Semaphore>>: Unpin,
impl<T> UnsafeUnpin for WeakUnboundedSender<T>
where
Arc<Chan<T, Semaphore>>: UnsafeUnpin,
impl<T> UnwindSafe for WeakUnboundedSender<T>
where
Arc<Chan<T, Semaphore>>: UnwindSafe,
Blanket Implementations
impl<T> Any for WeakUnboundedSender<T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for WeakUnboundedSender<T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for WeakUnboundedSender<T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for WeakUnboundedSender<T>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for WeakUnboundedSender<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for WeakUnboundedSender<T>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for WeakUnboundedSender<T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for WeakUnboundedSender<T>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for WeakUnboundedSender<T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>