pub struct ParallelStepResult {
pub name: String,
pub output: StepOutput,
pub step_id: Uuid,
}Expand description
Result of a single step within a parallel batch.
Fields§
§name: StringThe step name (same as provided to parallel()).
output: StepOutputThe step execution output.
step_id: UuidThe step ID in the store (for dependency tracking).
Trait Implementations§
Source§impl Clone for ParallelStepResult
impl Clone for ParallelStepResult
Source§fn clone(&self) -> ParallelStepResult
fn clone(&self) -> ParallelStepResult
Returns a duplicate of the value. Read more
1.0.0 · 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 Freeze for ParallelStepResult
impl RefUnwindSafe for ParallelStepResult
impl Send for ParallelStepResult
impl Sync for ParallelStepResult
impl Unpin for ParallelStepResult
impl UnsafeUnpin for ParallelStepResult
impl UnwindSafe for ParallelStepResult
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