oxilean_codegen/opt_reuse/reuseregion_traits.rs
1//! # ReuseRegion - Trait Implementations
2//!
3//! This module contains trait implementations for `ReuseRegion`.
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::ReuseRegion;
14use std::fmt;
15
16impl std::fmt::Display for ReuseRegion {
17 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
18 write!(
19 f,
20 "ReuseRegion#{}({}) {{ allocs={}, decisions={} }}",
21 self.region_id,
22 self.func_name,
23 self.allocs.len(),
24 self.decisions.len()
25 )
26 }
27}