Struct std::sync::mpmc::waker::Waker

source ·
pub(crate) struct Waker {
    selectors: Vec<Entry>,
    observers: Vec<Entry>,
}
Expand description

A queue of threads blocked on channel operations.

This data structure is used by threads to register blocking operations and get woken up once an operation becomes ready.

Fields§

§selectors: Vec<Entry>

A list of select operations.

§observers: Vec<Entry>

A list of operations waiting to be ready.

Implementations§

source§

impl Waker

source

pub(crate) fn new() -> Self

Creates a new Waker.

source

pub(crate) fn register(&mut self, oper: Operation, cx: &Context)

Registers a select operation.

source

pub(crate) fn register_with_packet( &mut self, oper: Operation, packet: *mut (), cx: &Context )

Registers a select operation and a packet.

source

pub(crate) fn unregister(&mut self, oper: Operation) -> Option<Entry>

Unregisters a select operation.

source

pub(crate) fn try_select(&mut self) -> Option<Entry>

Attempts to find another thread’s entry, select the operation, and wake it up.

source

pub(crate) fn notify(&mut self)

Notifies all operations waiting to be ready.

source

pub(crate) fn disconnect(&mut self)

Notifies all registered operations that the channel is disconnected.

Trait Implementations§

source§

impl Drop for Waker

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Waker

§

impl !Send for Waker

§

impl !Sync for Waker

§

impl Unpin for Waker

§

impl UnwindSafe for Waker

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.