pub struct WorkflowResult {
pub execution_id: WorkflowExecutionId,
pub status: ExecutionStatus,
pub outputs: Option<HashMap<String, Value>>,
pub execution_time: Duration,
}
Expand description
Extended workflow execution result with additional timing information
Fields§
§execution_id: WorkflowExecutionId
§status: ExecutionStatus
§outputs: Option<HashMap<String, Value>>
§execution_time: Duration
Trait Implementations§
Source§impl Clone for WorkflowResult
impl Clone for WorkflowResult
Source§fn clone(&self) -> WorkflowResult
fn clone(&self) -> WorkflowResult
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 WorkflowResult
impl RefUnwindSafe for WorkflowResult
impl Send for WorkflowResult
impl Sync for WorkflowResult
impl Unpin for WorkflowResult
impl UnwindSafe for WorkflowResult
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