pub(crate) struct Channel<T> {
    _marker: PhantomData<T>,
}
Expand description

Channel that never delivers messages.

Fields§

§_marker: PhantomData<T>

Implementations§

source§

impl<T> Channel<T>

source

pub(crate) fn new() -> Self

Creates a channel that never delivers messages.

source

pub(crate) fn try_recv(&self) -> Result<T, TryRecvError>

Attempts to receive a message without blocking.

source

pub(crate) fn recv( &self, deadline: Option<Instant> ) -> Result<T, RecvTimeoutError>

Receives a message from the channel.

source

pub(crate) unsafe fn read(&self, _token: &mut Token) -> Result<T, ()>

Reads a message from the channel.

source

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

Returns true if the channel is empty.

source

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

Returns true if the channel is full.

source

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

Returns the number of messages in the channel.

source

pub(crate) fn capacity(&self) -> Option<usize>

Returns the capacity of the channel.

Trait Implementations§

source§

impl<T> SelectHandle for Channel<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<T> RefUnwindSafe for Channel<T>where T: RefUnwindSafe,

§

impl<T> Send for Channel<T>where T: Send,

§

impl<T> Sync for Channel<T>where T: Sync,

§

impl<T> Unpin for Channel<T>where T: Unpin,

§

impl<T> UnwindSafe for Channel<T>where T: UnwindSafe,

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.