pub struct SystemStatistics {
pub active_workflows: usize,
pub total_workflows: usize,
pub completed_workflows: usize,
pub failed_workflows: usize,
pub total_tasks_completed: usize,
pub total_tasks_failed: usize,
}Expand description
System-wide statistics.
Fields§
§active_workflows: usizeNumber of active workflows.
total_workflows: usizeTotal workflows (active + historical).
completed_workflows: usizeCompleted workflows.
failed_workflows: usizeFailed workflows.
total_tasks_completed: usizeTotal tasks completed.
total_tasks_failed: usizeTotal tasks failed.
Trait Implementations§
Source§impl Clone for SystemStatistics
impl Clone for SystemStatistics
Source§fn clone(&self) -> SystemStatistics
fn clone(&self) -> SystemStatistics
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 SystemStatistics
impl Debug for SystemStatistics
Source§impl<'de> Deserialize<'de> for SystemStatistics
impl<'de> Deserialize<'de> for SystemStatistics
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 SystemStatistics
impl RefUnwindSafe for SystemStatistics
impl Send for SystemStatistics
impl Sync for SystemStatistics
impl Unpin for SystemStatistics
impl UnsafeUnpin for SystemStatistics
impl UnwindSafe for SystemStatistics
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