pub struct ParallelInvocation<S: StateSchema> {
pub final_state: S,
pub steps: Vec<ExecutionStep>,
pub recursion_count: usize,
pub parallel_branches: Vec<ParallelBranch<S>>,
}Expand description
ParallelInvocation - Result of graph execution with parallel branches
Fields§
§final_state: S§steps: Vec<ExecutionStep>§recursion_count: usize§parallel_branches: Vec<ParallelBranch<S>>Implementations§
Source§impl<S: StateSchema> ParallelInvocation<S>
impl<S: StateSchema> ParallelInvocation<S>
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for ParallelInvocation<S>where
S: Freeze,
impl<S> RefUnwindSafe for ParallelInvocation<S>where
S: RefUnwindSafe,
impl<S> Send for ParallelInvocation<S>
impl<S> Sync for ParallelInvocation<S>
impl<S> Unpin for ParallelInvocation<S>where
S: Unpin,
impl<S> UnsafeUnpin for ParallelInvocation<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for ParallelInvocation<S>where
S: UnwindSafe,
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