Skip to main content

oxilean_codegen/lua_backend/
luaextemitstats_traits.rs

1//! # LuaExtEmitStats - Trait Implementations
2//!
3//! This module contains trait implementations for `LuaExtEmitStats`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Display`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use crate::lcnf::*;
12
13use super::types::LuaExtEmitStats;
14use std::fmt;
15
16impl std::fmt::Display for LuaExtEmitStats {
17    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
18        write!(
19            f,
20            "LuaExtEmitStats {{ bytes={}, items={}, errors={}, warnings={} }}",
21            self.bytes_emitted, self.items_emitted, self.errors, self.warnings
22        )
23    }
24}