oxilean_codegen/to_lcnf/tolcnfconfig_traits.rs
1//! # ToLcnfConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `ToLcnfConfig`.
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::ToLcnfConfig;
14
15impl Default for ToLcnfConfig {
16 fn default() -> Self {
17 ToLcnfConfig {
18 erase_proofs: true,
19 erase_types: true,
20 lambda_lift: true,
21 max_inline_size: 8,
22 debug_names: false,
23 }
24 }
25}