Embassy
embassy-sync

Crates

git

Versions

default

Flavors

Struct embassy_sync::channel::DynamicReceiver

source ·
pub struct DynamicReceiver<'ch, T> { /* private fields */ }
Expand description

Receive-only access to a Channel without knowing channel size.

Implementations§

source§

impl<'ch, T> DynamicReceiver<'ch, T>

source

pub fn receive(&self) -> DynamicReceiveFuture<'_, T>

Receive the next value.

See Channel::receive().

source

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

Attempt to immediately receive the next value.

See Channel::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 Channel::poll_ready_to_receive()

source

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

Poll the channel for the next item

See Channel::poll_receive()

Trait Implementations§

source§

impl<'ch, T> Clone for DynamicReceiver<'ch, T>

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, const N: usize> From<Receiver<'ch, M, T, N>> for DynamicReceiver<'ch, T>
where M: RawMutex,

source§

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

Converts to this type from the input type.
source§

impl<'ch, T> Copy for DynamicReceiver<'ch, T>

Auto Trait Implementations§

§

impl<'ch, T> Freeze for DynamicReceiver<'ch, T>

§

impl<'ch, T> !RefUnwindSafe for DynamicReceiver<'ch, T>

§

impl<'ch, T> !Send for DynamicReceiver<'ch, T>

§

impl<'ch, T> !Sync for DynamicReceiver<'ch, T>

§

impl<'ch, T> Unpin for DynamicReceiver<'ch, T>

§

impl<'ch, T> !UnwindSafe for DynamicReceiver<'ch, T>

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.