//! # ErrorSeverity - Trait Implementations
//!
//! This module contains trait implementations for `ErrorSeverity`.
//!
//! ## Implemented Traits
//!
//! - `Display`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
use super::types::ErrorSeverity;
use std::fmt;
impl fmt::Display for ErrorSeverity {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
ErrorSeverity::Note => write!(f, "note"),
ErrorSeverity::Warning => write!(f, "warning"),
ErrorSeverity::Error => write!(f, "error"),
}
}
}