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
Sourcepub const fn capacity(&self) -> usize
pub const fn capacity(&self) -> usize
Returns the maximum number of elements the channel can hold.
Sourcepub fn free_capacity(&self) -> usize
pub fn free_capacity(&self) -> usize
Returns the free capacity of the channel.
Sourcepub fn clear(&self)
pub fn clear(&self)
Clears all elements in the channel.
See Channel::clear()
Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of elements currently in the channel.
See Channel::len()
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,
Source§impl<'ch, M, T, const N: usize> Sink<T> for Sender<'ch, M, T, N>where
M: RawMutex,
impl<'ch, M, T, const N: usize> Sink<T> for Sender<'ch, M, T, N>where
M: RawMutex,
Source§type Error = TrySendError<T>
type Error = TrySendError<T>
The type of value produced by the sink when an error occurs.
Source§fn poll_ready(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Self::Error>>
fn poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>
Attempts to prepare the
Sink to receive a value. Read moreSource§fn start_send(self: Pin<&mut Self>, item: T) -> Result<(), Self::Error>
fn start_send(self: Pin<&mut Self>, item: T) -> Result<(), Self::Error>
Begin the process of sending a value to the sink.
Each call to this function must be preceded by a successful call to
poll_ready which returned Poll::Ready(Ok(())). Read moreimpl<'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