pub struct ParallelBranch<S: StateSchema> {
pub name: String,
pub final_state: S,
pub steps: Vec<ExecutionStep>,
}Expand description
ParallelBranch - Result of a parallel execution branch
Fields§
§name: StringName of the parallel branch.
final_state: SFinal state produced by the branch.
steps: Vec<ExecutionStep>Execution steps recorded in the branch.
Trait Implementations§
Source§impl<S: Clone + StateSchema> Clone for ParallelBranch<S>
impl<S: Clone + StateSchema> Clone for ParallelBranch<S>
Source§fn clone(&self) -> ParallelBranch<S>
fn clone(&self) -> ParallelBranch<S>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<S> Freeze for ParallelBranch<S>where
S: Freeze,
impl<S> RefUnwindSafe for ParallelBranch<S>where
S: RefUnwindSafe,
impl<S> Send for ParallelBranch<S>
impl<S> Sync for ParallelBranch<S>
impl<S> Unpin for ParallelBranch<S>where
S: Unpin,
impl<S> UnsafeUnpin for ParallelBranch<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for ParallelBranch<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