pub struct WorkflowExecution {
pub id: WorkflowExecutionId,
pub workflow_id: String,
pub status: ExecutionStatus,
pub start_time: DateTime<Utc>,
pub end_time: Option<DateTime<Utc>>,
pub inputs: HashMap<String, Value>,
pub outputs: Option<HashMap<String, Value>>,
pub current_graph: GraphRef_,
pub execution_history: Vec<ExecutionEvent>,
pub retry_count: u32,
pub timeout_at: Option<DateTime<Utc>>,
}
Expand description
ワークフロー実行状態
Fields§
§id: WorkflowExecutionId
§workflow_id: String
§status: ExecutionStatus
§start_time: DateTime<Utc>
§end_time: Option<DateTime<Utc>>
§inputs: HashMap<String, Value>
§outputs: Option<HashMap<String, Value>>
§current_graph: GraphRef_
§execution_history: Vec<ExecutionEvent>
§retry_count: u32
§timeout_at: Option<DateTime<Utc>>
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 · 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<'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
Auto Trait Implementations§
impl Freeze for WorkflowExecution
impl RefUnwindSafe for WorkflowExecution
impl Send for WorkflowExecution
impl Sync for WorkflowExecution
impl Unpin 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