pub struct DagExecutor<Ctx = (), IdType = ()> { /* private fields */ }Expand description
Executor for DAG workflows
Implementations§
Source§impl DagExecutor
impl DagExecutor
Sourcepub fn get_node_by_name_mut(
&mut self,
name: &str,
) -> Option<&mut BoxService<Task<(), (), ()>, GoTo<StepResult<(), ()>>, BoxDynError>>
pub fn get_node_by_name_mut( &mut self, name: &str, ) -> Option<&mut BoxService<Task<(), (), ()>, GoTo<StepResult<(), ()>>, BoxDynError>>
Get a node by name
Trait Implementations§
Auto Trait Implementations§
impl<Ctx, IdType> Freeze for DagExecutor<Ctx, IdType>
impl<Ctx = (), IdType = ()> !RefUnwindSafe for DagExecutor<Ctx, IdType>
impl<Ctx, IdType> Send for DagExecutor<Ctx, IdType>
impl<Ctx, IdType> Sync for DagExecutor<Ctx, IdType>
impl<Ctx, IdType> Unpin for DagExecutor<Ctx, IdType>
impl<Ctx = (), IdType = ()> !UnwindSafe for DagExecutor<Ctx, IdType>
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