//! # ConfigVersion - Trait Implementations
//!
//! This module contains trait implementations for `ConfigVersion`.
//!
//! ## Implemented Traits
//!
//! - `Display`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
use super::types::ConfigVersion;
impl fmt::Display for ConfigVersion {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}.{}.{}", self.major, self.minor, self.patch)?;
if let Some(ref pre) = self.pre_release {
write!(f, "-{}", pre)?;
}
if let Some(ref build) = self.build_metadata {
write!(f, "+{}", build)?;
}
Ok(())
}
}