pub struct ActivityStats {
pub activity_name: String,
pub total_executions: u64,
pub successful_executions: u64,
pub failed_executions: u64,
pub avg_execution_time: Duration,
pub error_rate: f64,
}
Expand description
Activity実行統計
Fields§
§activity_name: String
§total_executions: u64
§successful_executions: u64
§failed_executions: u64
§avg_execution_time: Duration
§error_rate: f64
Trait Implementations§
Source§impl Clone for ActivityStats
impl Clone for ActivityStats
Source§fn clone(&self) -> ActivityStats
fn clone(&self) -> ActivityStats
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 ActivityStats
impl Debug for ActivityStats
Source§impl Default for ActivityStats
impl Default for ActivityStats
Source§fn default() -> ActivityStats
fn default() -> ActivityStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityStats
impl<'de> Deserialize<'de> for ActivityStats
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 ActivityStats
impl RefUnwindSafe for ActivityStats
impl Send for ActivityStats
impl Sync for ActivityStats
impl Unpin for ActivityStats
impl UnwindSafe for ActivityStats
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