This is a FHIR library in its early stages. The models are generated from the FHIR StructureDefinitions (see FHIR downloads). It aims to be:
```rust use fhirsdk::r5::resources::Patient; use fhirsdk::client::*; use fhir_sdk::TryStreamExt;
async fn main() -> Result<(), Error> { // Set up the client using the local test server. let client = Client::new("http://localhost:8090/fhir/".parse().unwrap())?;
// Create a Patient resource using a typed builder.
let mut patient = Patient::builder().active(false).build();
// Push it to the server.
patient.create(&client).await?;
// The id and versionId is updated automatically this way.
assert!(patient.id.is_some());
// Search for all patient with `active` = false, including pagination.
let patients: Vec<Patient> = client
.search(SearchParameters::empty().and(TokenSearch::Standard {
name: "active",
system: None,
code: Some("false"),
not: false,
}))
.try_collect()
.await?;
Ok(())
} ```
For more examples, see the tests.
Simply set up the FHIR test server using docker compose up -d
in the workspace root and then run cargo xtask test
.
builders
feature to save some resources.setter(strip_option)
, because it disables dynamic setting of optional fields.Vec<Option<T>>
is annoying, but sadly is required to allow [null, {...}, null]
for extensions..This projects uses a bunch of clippy lints for higher code quality and style.
Install cargo-lints
using cargo install --git https://github.com/FlixCoder/cargo-lints
. The lints are defined in lints.toml
and can be checked by running cargo lints clippy --all-targets --workspace
.
Licensed under the MIT license. All contributors agree to license under this license.