pub struct GraphDefinitionLink {Show 21 fields
pub id: Option<String>,
pub extension: Vec<Extension>,
pub modifier_extension: Vec<Extension>,
pub description: Option<String>,
pub description_ext: Option<FieldExtension>,
pub min: Option<i32>,
pub min_ext: Option<FieldExtension>,
pub max: Option<String>,
pub max_ext: Option<FieldExtension>,
pub source_id: String,
pub source_id_ext: Option<FieldExtension>,
pub path: Option<String>,
pub path_ext: Option<FieldExtension>,
pub slice_name: Option<String>,
pub slice_name_ext: Option<FieldExtension>,
pub target_id: String,
pub target_id_ext: Option<FieldExtension>,
pub params: Option<String>,
pub params_ext: Option<FieldExtension>,
pub compartment: Vec<Option<GraphDefinitionLinkCompartment>>,
pub compartment_ext: Vec<Option<FieldExtension>>,
}
Expand description
Sub-fields of the link field in GraphDefinition
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.
modifier_extension: Vec<Extension>
Extensions that cannot be ignored even if unrecognized
May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element’s descendants. Usually modifier elements provide negation or qualification. 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. Applications processing a resource are required to check for modifier extensions.
Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
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.
description: Option<String>
Why this link is specified
Information about why this link is of interest in this graph definition.
description_ext: Option<FieldExtension>
Extension field.
min: Option<i32>
Minimum occurrences for this link
Minimum occurrences for this link.
min_ext: Option<FieldExtension>
Extension field.
max: Option<String>
Maximum occurrences for this link
Maximum occurrences for this link.
max_ext: Option<FieldExtension>
Extension field.
source_id: String
Source Node for this link
The source node for this link.
source_id_ext: Option<FieldExtension>
Extension field.
path: Option<String>
Path in the resource that contains the link
A FHIRPath expression that identifies one of FHIR References to other resources.
The path expression cannot contain a resolve() function. If there is no path, the link is a reverse lookup, using target.params. If the path is “*” then this means all references in the resource.
path_ext: Option<FieldExtension>
Extension field.
slice_name: Option<String>
Which slice (if profiled)
Which slice (if profiled).
slice_name_ext: Option<FieldExtension>
Extension field.
target_id: String
Target Node for this link
The target node for this link.
target_id_ext: Option<FieldExtension>
Extension field.
params: Option<String>
Criteria for reverse lookup
A set of parameters to look up.
At least one of the parameters must have the value {ref} which identifies the focus resource.
params_ext: Option<FieldExtension>
Extension field.
compartment: Vec<Option<GraphDefinitionLinkCompartment>>
Compartment Consistency Rules
Compartment Consistency Rules.
compartment_ext: Vec<Option<FieldExtension>>
Extension field.
Implementations§
Source§impl GraphDefinitionLink
impl GraphDefinitionLink
Sourcepub fn builder() -> GraphDefinitionLinkBuilder
pub fn builder() -> GraphDefinitionLinkBuilder
Start building a new instance
Trait Implementations§
Source§impl Clone for GraphDefinitionLink
impl Clone for GraphDefinitionLink
Source§fn clone(&self) -> GraphDefinitionLink
fn clone(&self) -> GraphDefinitionLink
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more