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