FHIR SDK

crates.io page docs.rs page license: MIT

This is a FHIR library in its early stages. The models are generated from the FHIR StructureDefinitions (see FHIR downloads). It aims to be:

Features

Not Planned

Example

```rust

![cfg(all(feature = "r5", feature = "builders", feature = "client"))]

use fhirsdk::r5::resources::Patient; use fhirsdk::client::*;

[tokio::main]

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());

Ok(())

} ```

For more examples, see the tests.

Testing

Simply set up the FHIR test server using docker compose up -d and run cargo test --workspace in the workspace root.

Known Problems

Lints

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.

License

Licensed under the MIT license. All contributors agree to license under this license.