struct Counter<C> {
senders: Atomic<usize>,
receivers: Atomic<usize>,
destroy: Atomic<bool>,
chan: C,
}
🔬This is a nightly-only experimental API. (
mpmc_channel
#126840)Expand description
Reference counter internals.
Fields§
§senders: Atomic<usize>
🔬This is a nightly-only experimental API. (
mpmc_channel
#126840)The number of senders associated with the channel.
receivers: Atomic<usize>
🔬This is a nightly-only experimental API. (
mpmc_channel
#126840)The number of receivers associated with the channel.
destroy: Atomic<bool>
🔬This is a nightly-only experimental API. (
mpmc_channel
#126840)Set to true
if the last sender or the last receiver reference deallocates the channel.
chan: C
🔬This is a nightly-only experimental API. (
mpmc_channel
#126840)The internal channel.
Auto Trait Implementations§
impl<C> !Freeze for Counter<C>
impl<C> RefUnwindSafe for Counter<C>where
C: RefUnwindSafe,
impl<C> Send for Counter<C>where
C: Send,
impl<C> Sync for Counter<C>where
C: Sync,
impl<C> Unpin for Counter<C>where
C: Unpin,
impl<C> UnwindSafe for Counter<C>where
C: UnwindSafe,
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
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)] const IS_ZST: bool = _
#[doc(hidden)] const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)Source§#[doc(hidden)] const LAYOUT: Layout = _
#[doc(hidden)] const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)Source§#[doc(hidden)] const MAX_SLICE_LEN: usize = _
#[doc(hidden)] const MAX_SLICE_LEN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)The largest safe length for a
[Self]
. Read more