pub struct PipelineBuilder<T: Sync + Send + 'static> {
pub(crate) rx: Receiver<T>,
pub(crate) threads: Vec<JoinHandle<()>>,
}Fields§
§rx: Receiver<T>§threads: Vec<JoinHandle<()>>Implementations§
Trait Implementations§
Source§impl<T: Sync + Send + 'static> PipelineLayer<T> for PipelineBuilder<T>
impl<T: Sync + Send + 'static> PipelineLayer<T> for PipelineBuilder<T>
Auto Trait Implementations§
impl<T> Freeze for PipelineBuilder<T>
impl<T> !RefUnwindSafe for PipelineBuilder<T>
impl<T> Send for PipelineBuilder<T>
impl<T> !Sync for PipelineBuilder<T>
impl<T> Unpin for PipelineBuilder<T>
impl<T> !UnwindSafe for PipelineBuilder<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