oxilean_codegen/matlab_backend/matlabgenconfig_traits.rs
1//! # MatlabGenConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `MatlabGenConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::MatlabGenConfig;
12
13impl Default for MatlabGenConfig {
14 fn default() -> Self {
15 MatlabGenConfig {
16 suppress_output: true,
17 emit_section_markers: false,
18 octave_compat: false,
19 indent: " ".to_string(),
20 emit_function_end: true,
21 prefer_anon_functions: true,
22 }
23 }
24}