oxilean_codegen/opt_mem2reg/m2rx2passconfig_traits.rs
1//! # M2RX2PassConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `M2RX2PassConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use crate::lcnf::*;
12
13use super::types::M2RX2PassConfig;
14
15impl Default for M2RX2PassConfig {
16 fn default() -> Self {
17 Self::new("default")
18 }
19}