Embassy
embassy-sync

Crates

git

Versions

default

Flavors

Struct embassy_sync::priority_channel::Receiver

source ·
pub struct Receiver<'ch, M, T, K, const N: usize>
where T: Ord, K: Kind, M: RawMutex,
{ /* private fields */ }
Expand description

Receive-only access to a PriorityChannel.

Implementations§

source§

impl<'ch, M, T, K, const N: usize> Receiver<'ch, M, T, K, N>
where T: Ord, K: Kind, M: RawMutex,

source

pub fn receive(&self) -> ReceiveFuture<'_, M, T, K, N>

Receive the next value.

See PriorityChannel::receive().

source

pub fn try_receive(&self) -> Result<T, TryReceiveError>

Attempt to immediately receive the next value.

See PriorityChannel::try_receive()

source

pub fn poll_ready_to_receive(&self, cx: &mut Context<'_>) -> Poll<()>

Allows a poll_fn to poll until the channel is ready to receive

See PriorityChannel::poll_ready_to_receive()

source

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

Poll the channel for the next item

See PriorityChannel::poll_receive()

Trait Implementations§

source§

impl<'ch, M, T, K, const N: usize> Clone for Receiver<'ch, M, T, K, N>
where T: Ord, K: Kind, M: RawMutex,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'ch, M, T, K, const N: usize> From<Receiver<'ch, M, T, K, N>> for DynamicReceiver<'ch, T>
where T: Ord, K: Kind, M: RawMutex,

source§

fn from(s: Receiver<'ch, M, T, K, N>) -> Self

Converts to this type from the input type.
source§

impl<'ch, M, T, K, const N: usize> Copy for Receiver<'ch, M, T, K, N>
where T: Ord, K: Kind, M: RawMutex,

Auto Trait Implementations§

§

impl<'ch, M, T, K, const N: usize> Freeze for Receiver<'ch, M, T, K, N>

§

impl<'ch, M, T, K, const N: usize> !RefUnwindSafe for Receiver<'ch, M, T, K, N>

§

impl<'ch, M, T, K, const N: usize> Send for Receiver<'ch, M, T, K, N>
where M: Sync, K: Send, T: Send,

§

impl<'ch, M, T, K, const N: usize> Sync for Receiver<'ch, M, T, K, N>
where M: Sync, K: Send, T: Send,

§

impl<'ch, M, T, K, const N: usize> Unpin for Receiver<'ch, M, T, K, N>

§

impl<'ch, M, T, K, const N: usize> !UnwindSafe for Receiver<'ch, M, T, K, N>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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.