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,
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