oxirs-cluster 0.2.4

Raft-backed distributed dataset for high availability and horizontal scaling
Documentation
//! # ThroughputStats - Trait Implementations
//!
//! This module contains trait implementations for `ThroughputStats`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use std::time::SystemTime;

use super::types::ThroughputStats;

impl Default for ThroughputStats {
    fn default() -> Self {
        Self {
            operations_per_second: 0.0,
            bytes_per_second: 0.0,
            peak_ops_per_second: 0.0,
            last_measurement: SystemTime::UNIX_EPOCH,
        }
    }
}