pub struct Sender<'ch, M, T, K, const N: usize>{ /* private fields */ }Expand description
Send-only access to a PriorityChannel.
Implementations§
Source§impl<'ch, M, T, K, const N: usize> Sender<'ch, M, T, K, N>
 
impl<'ch, M, T, K, const N: usize> Sender<'ch, M, T, K, N>
Sourcepub fn send(&self, message: T) -> SendFuture<'ch, M, T, K, N> ⓘ
 
pub fn send(&self, message: T) -> SendFuture<'ch, M, T, K, N> ⓘ
Sends a value.
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.
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.
Trait Implementations§
impl<'ch, M, T, K, const N: usize> Copy for Sender<'ch, M, T, K, N>
Auto Trait Implementations§
impl<'ch, M, T, K, const N: usize> Freeze for Sender<'ch, M, T, K, N>
impl<'ch, M, T, K, const N: usize> !RefUnwindSafe for Sender<'ch, M, T, K, N>
impl<'ch, M, T, K, const N: usize> Send for Sender<'ch, M, T, K, N>
impl<'ch, M, T, K, const N: usize> Sync for Sender<'ch, M, T, K, N>
impl<'ch, M, T, K, const N: usize> Unpin for Sender<'ch, M, T, K, N>
impl<'ch, M, T, K, const N: usize> !UnwindSafe for Sender<'ch, M, T, K, 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