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,
impl<'ch, M, T, const N: usize> Sender<'ch, M, T, N>where
M: RawMutex,
sourcepub fn send(&self, message: T) -> SendFuture<'ch, M, T, N> ⓘ
pub fn send(&self, message: T) -> SendFuture<'ch, M, T, N> ⓘ
Sends a value.
See Channel::send()
sourcepub fn try_send(&self, message: T) -> Result<(), TrySendError<T>>
pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>>
Attempt to immediately send a message.
See Channel::send()
sourcepub fn poll_ready_to_send(&self, cx: &mut Context<'_>) -> Poll<()>
pub fn poll_ready_to_send(&self, cx: &mut Context<'_>) -> Poll<()>
Allows a poll_fn to poll until the channel is ready to send
Trait Implementations§
source§impl<'ch, M, T, const N: usize> From<Sender<'ch, M, T, N>> for DynamicSender<'ch, T>where
M: RawMutex,
impl<'ch, M, T, const N: usize> From<Sender<'ch, M, T, N>> for DynamicSender<'ch, T>where
M: RawMutex,
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>
impl<'ch, M, T, const N: usize> Sync for Sender<'ch, M, T, N>
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more