Struct tokio::sync::mpsc::chan::Rx

source ·
pub(crate) struct Rx<T, S: Semaphore> {
    inner: Arc<Chan<T, S>>,
}
Expand description

Channel receiver.

Fields§

§inner: Arc<Chan<T, S>>

Implementations§

source§

impl<T, S: Semaphore> Rx<T, S>

source

fn new(chan: Arc<Chan<T, S>>) -> Rx<T, S>

source

pub(crate) fn close(&mut self)

source

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

source

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

source

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

source

pub(crate) fn recv(&mut self, cx: &mut Context<'_>) -> Poll<Option<T>>

Receive the next value

source

pub(crate) fn recv_many( &mut self, cx: &mut Context<'_>, buffer: &mut Vec<T>, limit: usize ) -> Poll<usize>

Receives up to limit values into buffer

For limit > 0, receives up to limit values into buffer. For limit == 0, immediately returns Ready(0).

source

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

Try to receive the next value.

Trait Implementations§

source§

impl<T, S: Semaphore + Debug> Debug for Rx<T, S>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, S: Semaphore> Drop for Rx<T, S>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<T, S> !RefUnwindSafe for Rx<T, S>

§

impl<T, S> Send for Rx<T, S>where S: Send + Sync, T: Send,

§

impl<T, S> Sync for Rx<T, S>where S: Send + Sync, T: Send,

§

impl<T, S> Unpin for Rx<T, S>

§

impl<T, S> !UnwindSafe for Rx<T, S>

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.