Skip to main content

oxilean_kernel/no_std_compat/
runtimeversion_traits.rs

1//! # RuntimeVersion - Trait Implementations
2//!
3//! This module contains trait implementations for `RuntimeVersion`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Display`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::RuntimeVersion;
12
13impl std::fmt::Display for RuntimeVersion {
14    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
15        f.write_str(&self.as_str())
16    }
17}