pub struct RangeInner {
pub id: Option<String>,
pub extension: Vec<Extension>,
pub low: Option<Quantity>,
pub low_ext: Option<FieldExtension>,
pub high: Option<Quantity>,
pub high_ext: Option<FieldExtension>,
}
Expand description
Range Type: A set of ordered Quantities defined by a low and high limit.
Range v5.0.0
Set of values bounded by low and high
A set of ordered Quantities defined by a low and high limit.
The stated low and high value are assumed to have arbitrarily high precision when it comes to determining which values are in the range. I.e. 1.99 is not in the range 2 -> 3.
Fields§
§id: Option<String>
Unique id for inter-element referencing
Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
extension: Vec<Extension>
Additional content defined by implementations
May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.
low: Option<Quantity>
Low limit
The low limit. The boundary is inclusive.
If the low element is missing, the low boundary is not known.
low_ext: Option<FieldExtension>
Extension field.
high: Option<Quantity>
High limit
The high limit. The boundary is inclusive.
If the high element is missing, the high boundary is not known.
high_ext: Option<FieldExtension>
Extension field.
Trait Implementations§
Source§impl Clone for RangeInner
impl Clone for RangeInner
Source§fn clone(&self) -> RangeInner
fn clone(&self) -> RangeInner
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more