pub struct QueueSender<T> { /* private fields */ }Expand description
A QueueSender is used to push items into
the queue.
It implements Send and Sync, thus allowing
multiple callers to concurrent push items.
Implementations§
Source§impl<T> QueueSender<T>
impl<T> QueueSender<T>
Trait Implementations§
Source§impl<T> Clone for QueueSender<T>
impl<T> Clone for QueueSender<T>
Source§impl<T> Drop for QueueSender<T>
impl<T> Drop for QueueSender<T>
impl<T: Send> Send for QueueSender<T>
impl<T: Send> Sync for QueueSender<T>
Auto Trait Implementations§
impl<T> Freeze for QueueSender<T>
impl<T> RefUnwindSafe for QueueSender<T>
impl<T> Unpin for QueueSender<T>
impl<T> UnwindSafe for QueueSender<T>
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