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