fhir 1.1.0

Fast Healthcare Interoperability Resources (FHIR) data model for Rust: the complete FHIR R5 and R4 resources, datatypes, and code systems as serde-serializable types, plus a spec-driven code generator.
//! An async FHIR R5 REST client (feature `client`).
//!
//! The REST protocol does not vary by release, so the implementation lives once
//! in [`crate::client`]; this module pins it to R5.
//!
//! ```no_run
//! # async fn demo() -> Result<(), fhir::r5::client::ClientError> {
//! use fhir::r5::client::Client;
//!
//! let client = Client::new("https://hapi.fhir.org/baseR5");
//! let patient = client.read("Patient", "example").await?;
//! println!("{patient:?}");
//! # Ok(()) }
//! ```

/// An async FHIR R5 REST client.
pub type Client = crate::client::ReleaseClient<super::R5>;

/// An error from a FHIR R5 REST interaction.
pub type ClientError = crate::client::ReleaseClientError<super::R5>;