//! # RubyStmt - Trait Implementations
//!
//! This module contains trait implementations for `RubyStmt`.
//!
//! ## Implemented Traits
//!
//! - `Display`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
use crate::lcnf::*;
use super::functions::{fmt_ruby_class, fmt_ruby_method, fmt_ruby_module_stmt, fmt_ruby_stmt};
use super::types::RubyStmt;
use std::fmt;
impl fmt::Display for RubyStmt {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt_ruby_stmt(self, "", f)
}
}