pub struct WorkflowStats {
pub total_executions: u64,
pub successful_executions: u64,
pub failed_executions: u64,
pub cancelled_executions: u64,
pub timed_out_executions: u64,
pub avg_execution_time: Duration,
pub min_execution_time: Duration,
pub max_execution_time: Duration,
pub execution_time_histogram: HashMap<String, u64>,
}
Expand description
ワークフロー実行統計
Fields§
§total_executions: u64
§successful_executions: u64
§failed_executions: u64
§cancelled_executions: u64
§timed_out_executions: u64
§avg_execution_time: Duration
§min_execution_time: Duration
§max_execution_time: Duration
§execution_time_histogram: HashMap<String, u64>
Trait Implementations§
Source§impl Clone for WorkflowStats
impl Clone for WorkflowStats
Source§fn clone(&self) -> WorkflowStats
fn clone(&self) -> WorkflowStats
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 WorkflowStats
impl Debug for WorkflowStats
Source§impl Default for WorkflowStats
impl Default for WorkflowStats
Source§fn default() -> WorkflowStats
fn default() -> WorkflowStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowStats
impl<'de> Deserialize<'de> for WorkflowStats
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 WorkflowStats
impl RefUnwindSafe for WorkflowStats
impl Send for WorkflowStats
impl Sync for WorkflowStats
impl Unpin for WorkflowStats
impl UnwindSafe for WorkflowStats
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