Skip to main content

oxilean_codegen/pgo/
pgoconfig_traits.rs

1//! # PgoConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `PgoConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::PgoConfig;
12
13impl Default for PgoConfig {
14    fn default() -> Self {
15        Self {
16            hot_threshold: 100,
17            inline_hot: true,
18            specialize_hot: true,
19            max_inline_size: 50,
20        }
21    }
22}