pubmed-client 0.1.0

An async Rust client for PubMed and PMC APIs for retrieving biomedical research articles
Documentation
1
2
3
4
5
6
7
8
//! XML parsing utilities for PMC parser
//!
//! This module re-exports common XML parsing utilities.
//! The actual implementation has been moved to `crate::common::xml_utils`
//! for sharing between PubMed and PMC parsers.

// Re-export all common XML utilities
pub use crate::common::xml_utils::*;