pub struct UsageSummary {
pub total_events: usize,
pub unique_actors: usize,
pub unique_requirements: usize,
pub top_skills: Vec<(String, u32)>,
pub avg_cycle_time_hours: Option<f64>,
pub first_event: Option<DateTime<Utc>>,
pub last_event: Option<DateTime<Utc>>,
}Expand description
Summary of usage metrics.
Fields§
§total_events: usize§unique_actors: usize§unique_requirements: usize§top_skills: Vec<(String, u32)>§avg_cycle_time_hours: Option<f64>§first_event: Option<DateTime<Utc>>§last_event: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for UsageSummary
impl Clone for UsageSummary
Source§fn clone(&self) -> UsageSummary
fn clone(&self) -> UsageSummary
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 UsageSummary
impl Debug for UsageSummary
Source§impl Display for UsageSummary
impl Display for UsageSummary
Auto Trait Implementations§
impl Freeze for UsageSummary
impl RefUnwindSafe for UsageSummary
impl Send for UsageSummary
impl Sync for UsageSummary
impl Unpin for UsageSummary
impl UnsafeUnpin for UsageSummary
impl UnwindSafe for UsageSummary
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