pub struct Organization {Show 18 fields
pub id: Option<Id>,
pub meta: Option<Meta>,
pub implicit_rules: Option<UriDt>,
pub language: Option<CodeDt>,
pub text: Option<Narrative>,
pub contained: Option<Vec<AnyResource>>,
pub extension: Option<Vec<Extension>>,
pub modifier_extension: Option<Vec<Extension>>,
pub identifier: Option<Vec<Identifier>>,
pub active: Option<BooleanDt>,
pub type_: Option<Vec<CodeableConcept>>,
pub name: Option<StringDt>,
pub alias: Option<Vec<StringDt>>,
pub description: Option<MarkdownDt>,
pub contact: Option<Vec<ExtendedContactDetail>>,
pub part_of: Option<Reference>,
pub endpoint: Option<Vec<Reference>>,
pub qualification: Option<Vec<OrganizationQualificationBackboneElement>>,
}
Fields§
§id: Option<Id>
Logical id of this artifact
meta: Option<Meta>
Metadata about the resource
implicit_rules: Option<UriDt>
A set of rules under which this content was created
language: Option<CodeDt>
Language of the resource content
text: Option<Narrative>
Text summary of the resource, for human interpretation
contained: Option<Vec<AnyResource>>
Contained, inline Resources
extension: Option<Vec<Extension>>
Additional content defined by implementations
modifier_extension: Option<Vec<Extension>>
Extensions that cannot be ignored
identifier: Option<Vec<Identifier>>
Identifies this organization across multiple systems
active: Option<BooleanDt>
Whether the organization’s record is still in active use
type_: Option<Vec<CodeableConcept>>
Kind of organization
name: Option<StringDt>
Name used for the organization
alias: Option<Vec<StringDt>>
A list of alternate names that the organization is known as, or was known as in the past
description: Option<MarkdownDt>
Additional details about the Organization that could be displayed as further information to identify the Organization beyond its name
contact: Option<Vec<ExtendedContactDetail>>
Official contact details for the Organization
part_of: Option<Reference>
The organization of which this organization forms a part
endpoint: Option<Vec<Reference>>
Technical endpoints providing access to services operated for the organization
qualification: Option<Vec<OrganizationQualificationBackboneElement>>
Qualifications, certifications, accreditations, licenses, training, etc. pertaining to the provision of care
Implementations§
Source§impl Organization
impl Organization
pub fn set_identifier(self, v: Vec<Identifier>) -> Self
pub fn add_identifier(self, v: Identifier) -> Self
pub fn set_active<T: Into<BooleanDt>>(self, v: T) -> Self
pub fn set_type_(self, v: Vec<CodeableConcept>) -> Self
pub fn add_type_(self, v: CodeableConcept) -> Self
pub fn set_name<T: Into<StringDt>>(self, v: T) -> Self
pub fn set_alias(self, v: Vec<StringDt>) -> Self
pub fn add_alias<T: Into<StringDt>>(self, v: T) -> Self
pub fn set_description<T: Into<MarkdownDt>>(self, v: T) -> Self
pub fn set_contact(self, v: Vec<ExtendedContactDetail>) -> Self
pub fn add_contact(self, v: ExtendedContactDetail) -> Self
pub fn set_part_of(self, v: Reference) -> Self
pub fn set_endpoint(self, v: Vec<Reference>) -> Self
pub fn add_endpoint(self, v: Reference) -> Self
pub fn set_qualification( self, v: Vec<OrganizationQualificationBackboneElement>, ) -> Self
pub fn add_qualification( self, v: OrganizationQualificationBackboneElement, ) -> Self
Trait Implementations§
Source§impl Clone for Organization
impl Clone for Organization
Source§fn clone(&self) -> Organization
fn clone(&self) -> Organization
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more