cargo-aprz-lib 0.14.0

Internal library for cargo-aprz
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

/// Counts of events over different time windows.
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct TimeWindowStats {
    pub last_90_days: u64,
    pub last_180_days: u64,
    pub last_365_days: u64,
    pub total: u64,
}