pub(crate) struct Receiver<'a, T>(&'a Channel<T>);
Expand description

Receiver handle to a channel.

Tuple Fields§

§0: &'a Channel<T>

Trait Implementations§

source§

impl<T> SelectHandle for Receiver<'_, T>

source§

fn try_select(&self, token: &mut Token) -> bool

Attempts to select an operation and returns true on success.
source§

fn deadline(&self) -> Option<Instant>

Returns a deadline for an operation, if there is one.
source§

fn register(&self, oper: Operation, cx: &Context) -> bool

Registers an operation for execution and returns true if it is now ready.
source§

fn unregister(&self, oper: Operation)

Unregisters an operation for execution.
source§

fn accept(&self, token: &mut Token, _cx: &Context) -> bool

Attempts to select an operation the thread got woken up for and returns true on success.
source§

fn is_ready(&self) -> bool

Returns true if an operation can be executed without blocking.
source§

fn watch(&self, oper: Operation, cx: &Context) -> bool

Registers an operation for readiness notification and returns true if it is now ready.
source§

fn unwatch(&self, oper: Operation)

Unregisters an operation for readiness notification.

Auto Trait Implementations§

§

impl<'a, T> !RefUnwindSafe for Receiver<'a, T>

§

impl<'a, T> !Send for Receiver<'a, T>

§

impl<'a, T> !Sync for Receiver<'a, T>

§

impl<'a, T> Unpin for Receiver<'a, T>

§

impl<'a, T> !UnwindSafe for Receiver<'a, T>

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.