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 use fhirsdk::r5::resources::Patient; use fhirsdk::client::*; use fhir_sdk::TryStreamExt;

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

// 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.

Testing

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

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.