pub struct Pipeline<F> { /* private fields */ }
Implementations§
Source§impl<F: Debug + Default + Send + 'static> Pipeline<F>
impl<F: Debug + Default + Send + 'static> Pipeline<F>
pub fn new() -> Self
pub fn singleton(component: Component<F>) -> Self
pub fn link(self, component: Component<F>) -> Self
pub fn get_feeder(&mut self) -> PipelineFeeder<F>
pub fn run(self) -> Vec<JoinHandle<()>>
pub fn tag(self, tag: &str) -> Self
pub fn feedable(self) -> Self
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for Pipeline<F>
impl<F> !RefUnwindSafe for Pipeline<F>
impl<F> Send for Pipeline<F>where
F: Send,
impl<F> !Sync for Pipeline<F>
impl<F> Unpin for Pipeline<F>
impl<F> !UnwindSafe for Pipeline<F>
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