pub struct ParallelResult {
pub name: String,
pub execution_id: ExecutionId,
pub output: Result<String, String>,
}Expand description
Result from a parallel execution branch
Fields§
§name: StringName of the callable that produced this result
execution_id: ExecutionIdExecution ID for this branch
output: Result<String, String>Output or error
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParallelResult
impl RefUnwindSafe for ParallelResult
impl Send for ParallelResult
impl Sync for ParallelResult
impl Unpin for ParallelResult
impl UnsafeUnpin for ParallelResult
impl UnwindSafe for ParallelResult
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