Skip to main content

oxilean_codegen/haskell_backend/
hsextdiagseverity_traits.rs

1//! # HsExtDiagSeverity - Trait Implementations
2//!
3//! This module contains trait implementations for `HsExtDiagSeverity`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Display`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use crate::lcnf::*;
12
13use super::types::HsExtDiagSeverity;
14use std::fmt;
15
16impl std::fmt::Display for HsExtDiagSeverity {
17    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
18        match self {
19            HsExtDiagSeverity::Note => write!(f, "note"),
20            HsExtDiagSeverity::Warning => write!(f, "warning"),
21            HsExtDiagSeverity::Error => write!(f, "error"),
22        }
23    }
24}