scirs2-stats 0.3.3

Statistical functions module for SciRS2 (scirs2-stats)
Documentation
//! # StabilityTrendAnalysis - Trait Implementations
//!
//! This module contains trait implementations for `StabilityTrendAnalysis`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::types::{StabilityTrend, StabilityTrendAnalysis};

impl Default for StabilityTrendAnalysis {
    fn default() -> Self {
        Self {
            trend: StabilityTrend::Stable,
            average_score: 0.0,
            recent_average: 0.0,
            total_tests: 0,
            total_critical_issues: 0,
            total_warnings: 0,
        }
    }
}