1 2 3 4 5
// Re-export the GLRError from lib.rs for consistent naming //! Error and result types for GLR parsing operations. /// Convenience type alias for GLR results. pub type Result<T> = std::result::Result<T, crate::GLRError>;