Skip to main content

oxilean_codegen/runtime_codegen/
rcuseanalysis_traits.rs

1//! # RcUseAnalysis - Trait Implementations
2//!
3//! This module contains trait implementations for `RcUseAnalysis`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use crate::lcnf::*;
12use crate::native_backend::*;
13
14use super::types::RcUseAnalysis;
15
16impl Default for RcUseAnalysis {
17    fn default() -> Self {
18        Self::new()
19    }
20}