pub(crate) struct IdleNotifiedSet<T> {
    lists: Arc<Mutex<ListsInner<T>>>,
    length: usize,
}
Expand description

This is the main handle to the collection.

Fields§

§lists: Arc<Mutex<ListsInner<T>>>§length: usize

Implementations§

source§

impl<T> IdleNotifiedSet<T>

source

pub(crate) fn new() -> Self

Create a new IdleNotifiedSet.

source

pub(crate) fn len(&self) -> usize

source

pub(crate) fn is_empty(&self) -> bool

source

pub(crate) fn insert_idle(&mut self, value: T) -> EntryInOneOfTheLists<'_, T>

Insert the given value into the idle list.

source

pub(crate) fn pop_notified( &mut self, waker: &Waker ) -> Option<EntryInOneOfTheLists<'_, T>>

Pop an entry from the notified list to poll it. The entry is moved to the idle list atomically.

source

pub(crate) fn try_pop_notified(&mut self) -> Option<EntryInOneOfTheLists<'_, T>>

Tries to pop an entry from the notified list to poll it. The entry is moved to the idle list atomically.

source

pub(crate) fn for_each<F: FnMut(&mut T)>(&mut self, func: F)

Call a function on every element in this list.

source

pub(crate) fn drain<F: FnMut(T)>(&mut self, func: F)

Remove all entries in both lists, applying some function to each element.

The closure is called on all elements even if it panics. Having it panic twice is a double-panic, and will abort the application.

Trait Implementations§

source§

impl<T> Drop for IdleNotifiedSet<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T: Send> Send for IdleNotifiedSet<T>

source§

impl<T: Sync> Sync for IdleNotifiedSet<T>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.