tlq_fhir_context/
lib.rs

1//! FHIR Context for runtime StructureDefinition access
2//!
3//! Provides a trait-based interface for accessing FHIR conformance resources
4//! during FHIRPath HIR generation, similar to the Python implementation.
5
6pub mod context;
7pub mod error;
8pub mod loader;
9pub mod version;
10
11pub use context::{
12    ConformanceResourceProvider, DefaultFhirContext, FallbackConformanceProvider, FhirContext,
13    FlexibleFhirContext, LockedPackage, PackageIntrospection, PackageLock,
14};
15pub use error::{Error, Result};
16pub use loader::PackageLoader;