1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
//! Parse the FHIR R5 `all.json` specification bundle.
//!
//! This module reads the official FHIR R5 definitions file `all.json`, located
//! under the crate's `doc/fhir-specifications/r5/fhir-definitions-json`
//! directory and referenced here via `DEFINITIONS_FILE`. That bundle aggregates
//! the shared structural building blocks used throughout the specification, such
//! as codings, codeable concepts, identifiers, periods, quantities, ranges,
//! extensions, and related metadata. For each of these building blocks this
//! module exposes a corresponding Rust type, defined in a dedicated submodule
//! and re-exported here for convenient access, for example `Coding`,
//! `CodeableConcept`, `Identifier`, `Period`, and `Quantity`. Each submodule
//! deserializes its slice of the `all.json` bundle into an intermediate Rust
//! struct and then renders that struct as formatted Rust source code, which the
//! generator writes out under the crate's tracked `tmp/out` directory for later
//! use, or hand-adaptation, as part of the `src/r5/types` datatype layer. Within
//! the wider generation pipeline this module is one of several parsers under
//! `crate::r5::parse`, alongside the parsers for concept maps, data elements,
//! profiles, search parameters, and value sets, that together turn the raw FHIR
//! JSON specifications into strongly typed Rust source code.
// Namespace conveniences
pub static DIR: LazyLock =
new;
pub static DEFINITIONS_FILE: LazyLock =
new;
// Submodules
pub use Additional;
pub use AdditionalAttribute;
pub use Binding;
pub use CodeableConcept;
pub use Coding;
pub use Constraint;
pub use Contact;
pub use DependsOn;
pub use Example;
pub use Extension;
pub use ElementType;
pub use Identifier;
pub use Jurisdiction;
pub use Meta;
pub use Period;
pub use Property;
pub use Quantity;
pub use Range;
pub use RelatedArtifact;
pub use Target;
pub use Topic;
pub use r#typer#typer#Type;
pub use UnderscoreCode;