pub struct PipelineHandle<T: 'static> { /* private fields */ }Expand description
A built pipeline ready for execution.
Implementations§
Source§impl<T: Serialize + DeserializeOwned + 'static> PipelineHandle<T>
impl<T: Serialize + DeserializeOwned + 'static> PipelineHandle<T>
Sourcepub fn run(&mut self) -> Result<(), FabricError>
pub fn run(&mut self) -> Result<(), FabricError>
Run the pipeline to completion, discarding output.
Auto Trait Implementations§
impl<T> Freeze for PipelineHandle<T>
impl<T> !RefUnwindSafe for PipelineHandle<T>
impl<T> !Send for PipelineHandle<T>
impl<T> !Sync for PipelineHandle<T>
impl<T> Unpin for PipelineHandle<T>where
T: Unpin,
impl<T> !UnwindSafe for PipelineHandle<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