pubmed_parser/pmc/
mod.rs

1//! PMC (PubMed Central) XML parsing and data models
2//!
3//! This module provides parsers for PMC full-text XML responses
4//! and the data types that represent PMC articles.
5
6pub mod domain;
7pub mod oa_api;
8pub mod parser;
9
10// Re-export domain types as the primary API
11pub use domain::{
12    Abstract, AbstractSection, ArticleMeta, Back, Body, Definition, Figure, Formula, Front,
13    FundingInfo, JournalMeta, License, Permissions, PmcArticle, Reference, Section,
14    SupplementaryMaterial, Table, TableCell, TableRow, TitleGroup,
15};
16
17// Re-export OA types
18pub use oa_api::OaSubsetInfo;
19pub use parser::parse_pmc_xml;