//! Intermediate Representation (IR) - Validated error definition model
//!
//! This module defines the typed, validated representation of an error definition
//! after parsing from the AST. The IR is used by the code generator to produce
//! the final trait implementations.
pub use EnumDefinition;
pub use FieldDefinition;
pub use TransparentFieldDefinition;
pub use StructDefinition;
pub use ;
/// Top-level error definition - either an enum or a struct
pub