pub struct PipelineSink<I: Send + 'static> { /* private fields */ }Expand description
Producer end. submit blocks (awaits) when the channel is full
— that’s the backpressure signal.
Implementations§
Trait Implementations§
Source§impl<I: Clone + Send + 'static> Clone for PipelineSink<I>
impl<I: Clone + Send + 'static> Clone for PipelineSink<I>
Source§fn clone(&self) -> PipelineSink<I>
fn clone(&self) -> PipelineSink<I>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<I> Freeze for PipelineSink<I>
impl<I> RefUnwindSafe for PipelineSink<I>
impl<I> Send for PipelineSink<I>
impl<I> Sync for PipelineSink<I>
impl<I> Unpin for PipelineSink<I>
impl<I> UnsafeUnpin for PipelineSink<I>
impl<I> UnwindSafe for PipelineSink<I>
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