oxilean_std/show/showconfig_traits.rs
1//! # ShowConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `ShowConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::ShowConfig;
12
13impl Default for ShowConfig {
14 fn default() -> Self {
15 Self {
16 compact: false,
17 ascii_only: false,
18 max_depth: Some(50),
19 show_implicit: false,
20 show_levels: false,
21 show_binder_types: true,
22 indent_step: 2,
23 }
24 }
25}