Embassy
embassy-sync

Crates

git

Versions

default

Flavors

Struct embassy_sync::channel::Sender

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

Send-only access to a Channel.

Implementations§

source§

impl<'ch, M, T, const N: usize> Sender<'ch, M, T, N>
where M: RawMutex,

source

pub fn send(&self, message: T) -> SendFuture<'ch, M, T, N>

Sends a value.

See Channel::send()

source

pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>>

Attempt to immediately send a message.

See Channel::send()

source

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

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

See Channel::poll_ready_to_send()

Trait Implementations§

source§

impl<'ch, M, T, const N: usize> Clone for Sender<'ch, M, T, N>
where 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, const N: usize> From<Sender<'ch, M, T, N>> for DynamicSender<'ch, T>
where M: RawMutex,

source§

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

Converts to this type from the input type.
source§

impl<'ch, M, T, const N: usize> Copy for Sender<'ch, M, T, N>
where M: RawMutex,

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<'ch, M, T, const N: usize> !UnwindSafe for Sender<'ch, M, T, 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.