oxilean_codegen/opt_ctfe/ctfeconfig_traits.rs
1//! # CtfeConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `CtfeConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::CtfeConfig;
12
13impl Default for CtfeConfig {
14 fn default() -> Self {
15 CtfeConfig {
16 fuel: 10_000,
17 max_depth: 256,
18 replace_calls: true,
19 cross_boundary_propagation: true,
20 }
21 }
22}