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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)