//! # EtaDepthTracker - Trait Implementations
//!
//! This module contains trait implementations for `EtaDepthTracker`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
use super::types::EtaDepthTracker;
impl Default for EtaDepthTracker {
fn default() -> Self {
EtaDepthTracker::new()
}
}