Skip to main content

oxilean_codegen/ruby_backend/
rubyproclambdadiff_traits.rs

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