pub struct TransformationPipeline<T: Clone> { /* private fields */ }
Implementations§
Source§impl<T: Clone> TransformationPipeline<T>
impl<T: Clone> TransformationPipeline<T>
pub fn new( stages: Vec<Box<dyn TransformationStage<T>>>, ) -> TransformationPipeline<T>
pub fn run(&self, initial_data: T) -> Result<T, Error>
Auto Trait Implementations§
impl<T> Freeze for TransformationPipeline<T>
impl<T> !RefUnwindSafe for TransformationPipeline<T>
impl<T> !Send for TransformationPipeline<T>
impl<T> !Sync for TransformationPipeline<T>
impl<T> Unpin for TransformationPipeline<T>
impl<T> !UnwindSafe for TransformationPipeline<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