Skip to main content

oxiphysics_python/serialization/
incrementalexportconfig_traits.rs

1//! # IncrementalExportConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `IncrementalExportConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11#[allow(unused_imports)]
12use super::functions::*;
13use super::types::IncrementalExportConfig;
14
15impl Default for IncrementalExportConfig {
16    fn default() -> Self {
17        Self {
18            min_speed_threshold: 0.0,
19            max_batch_size: 1000,
20            include_sleeping: true,
21        }
22    }
23}