torsh-backend 0.1.2

Backend abstraction layer for ToRSh
Documentation
//! # PercentileStats - Trait Implementations
//!
//! This module contains trait implementations for `PercentileStats`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::types::PercentileStats;

impl Default for PercentileStats {
    fn default() -> Self {
        Self {
            p50: 0.0,
            p90: 0.0,
            p95: 0.0,
            p99: 0.0,
            p999: 0.0,
            min: 0.0,
            max: 0.0,
        }
    }
}