struct StoredExecutionSummary {
execution_id: String,
workflow_id: String,
status: ExecutionStatus,
started_at: i64,
completed_at: Option<i64>,
total_tasks: usize,
completed_tasks: usize,
failed_tasks: usize,
}Fields§
§execution_id: String§workflow_id: String§status: ExecutionStatus§started_at: i64§completed_at: Option<i64>§total_tasks: usize§completed_tasks: usize§failed_tasks: usizeTrait Implementations§
Source§impl Clone for StoredExecutionSummary
impl Clone for StoredExecutionSummary
Source§fn clone(&self) -> StoredExecutionSummary
fn clone(&self) -> StoredExecutionSummary
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 StoredExecutionSummary
impl Debug for StoredExecutionSummary
Source§impl<'de> Deserialize<'de> for StoredExecutionSummary
impl<'de> Deserialize<'de> for StoredExecutionSummary
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
Source§impl From<&StoredExecutionSummary> for ExecutionSummary
impl From<&StoredExecutionSummary> for ExecutionSummary
Source§fn from(value: &StoredExecutionSummary) -> Self
fn from(value: &StoredExecutionSummary) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StoredExecutionSummary
impl RefUnwindSafe for StoredExecutionSummary
impl Send for StoredExecutionSummary
impl Sync for StoredExecutionSummary
impl Unpin for StoredExecutionSummary
impl UnwindSafe for StoredExecutionSummary
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