oxilean-runtime 0.1.2

OxiLean runtime - Memory management, closures, I/O, and task scheduling
Documentation
//! # ClosureOptReport - Trait Implementations
//!
//! This module contains trait implementations for `ClosureOptReport`.
//!
//! ## Implemented Traits
//!
//! - `Display`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::types::ClosureOptReport;
use std::fmt;

impl fmt::Display for ClosureOptReport {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "ClosureOptReport {{ inlined_paps: {}, specialized: {}, total: {} }}",
            self.inlined_paps,
            self.specialized_arities,
            self.total()
        )
    }
}