pub struct WorkflowExecution {
pub status: WorkflowRunStatus,
pub usage: WorkflowUsage,
pub memo_usage: WorkflowMemoUsage,
pub leaf_results: Vec<LeafResult>,
pub branch_results: Vec<BranchResult>,
pub control_node_results: Vec<ControlNodeResult>,
}Fields§
§status: WorkflowRunStatus§usage: WorkflowUsage§memo_usage: WorkflowMemoUsage§leaf_results: Vec<LeafResult>§branch_results: Vec<BranchResult>§control_node_results: Vec<ControlNodeResult>Implementations§
Source§impl WorkflowExecution
impl WorkflowExecution
pub fn mark_failed(&mut self)
pub fn mark_cancelled(&mut self)
pub fn mark_budget_exceeded(&mut self)
Trait Implementations§
Source§impl Clone for WorkflowExecution
impl Clone for WorkflowExecution
Source§fn clone(&self) -> WorkflowExecution
fn clone(&self) -> WorkflowExecution
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 moreSource§impl Debug for WorkflowExecution
impl Debug for WorkflowExecution
Source§impl Default for WorkflowExecution
impl Default for WorkflowExecution
Source§impl<'de> Deserialize<'de> for WorkflowExecution
impl<'de> Deserialize<'de> for WorkflowExecution
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for WorkflowExecution
Source§impl PartialEq for WorkflowExecution
impl PartialEq for WorkflowExecution
Source§impl Serialize for WorkflowExecution
impl Serialize for WorkflowExecution
impl StructuralPartialEq for WorkflowExecution
Auto Trait Implementations§
impl Freeze for WorkflowExecution
impl RefUnwindSafe for WorkflowExecution
impl Send for WorkflowExecution
impl Sync for WorkflowExecution
impl Unpin for WorkflowExecution
impl UnsafeUnpin for WorkflowExecution
impl UnwindSafe for WorkflowExecution
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