oxilean-kernel 0.1.2

OxiLean kernel - The trusted computing base for type checking
Documentation
//! # AllocConfig - Trait Implementations
//!
//! This module contains trait implementations for `AllocConfig`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::types::AllocConfig;

impl Default for AllocConfig {
    fn default() -> Self {
        Self {
            use_global_allocator: true,
            max_heap_bytes: None,
        }
    }
}