oxilean-parse 0.1.2

OxiLean parser - Concrete syntax to abstract syntax
Documentation
//! # ParseMode - Trait Implementations
//!
//! This module contains trait implementations for `ParseMode`.
//!
//! ## Implemented Traits
//!
//! - `Display`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::types::ParseMode;

impl std::fmt::Display for ParseMode {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "ParseMode(tactics={}, recover={}, lenient={})",
            self.allow_tactics, self.recover_on_error, self.lenient
        )
    }
}