fhir 2.0.0

Fast Healthcare Interoperability Resources (FHIR) data model for Rust: the complete FHIR R5, R4, and R3 resources, datatypes, and code systems as serde-serializable types, plus a spec-driven code generator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! decimal
//!
//! URL: http://hl7.org/fhir/StructureDefinition/decimal
//!
//!
//!
//! FHIR R3: <https://hl7.org/fhir/STU3/>

//! `decimal` is defined identically in every modelled release, so the type
//! lives at the crate root ([`crate::decimal`]) and each release re-exports
//! it. Its precision is preserved lexically — see spec 02 (R2.2).

pub use crate::decimal::{Decimal, DecimalError};