pub struct SequentialFlow<C: Callable> { /* private fields */ }Expand description
Sequential execution flow
Implementations§
Source§impl<C: Callable> SequentialFlow<C>
impl<C: Callable> SequentialFlow<C>
Sourcepub fn with_steps(self, callables: Vec<Arc<C>>) -> Self
pub fn with_steps(self, callables: Vec<Arc<C>>) -> Self
Add multiple steps
Auto Trait Implementations§
impl<C> Freeze for SequentialFlow<C>
impl<C> RefUnwindSafe for SequentialFlow<C>where
C: RefUnwindSafe,
impl<C> Send for SequentialFlow<C>
impl<C> Sync for SequentialFlow<C>
impl<C> Unpin for SequentialFlow<C>
impl<C> UnsafeUnpin for SequentialFlow<C>
impl<C> UnwindSafe for SequentialFlow<C>where
C: RefUnwindSafe,
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