pub struct CareTeam {Show 19 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 status: Option<CodeDt>,
pub category: Option<Vec<CodeableConcept>>,
pub name: Option<StringDt>,
pub subject: Option<Reference>,
pub period: Option<Period>,
pub participant: Option<Vec<CareTeamParticipantBackboneElement>>,
pub reason: Option<Vec<CodeableReference>>,
pub managing_organization: Option<Vec<Reference>>,
pub telecom: Option<Vec<ContactPoint>>,
pub note: Option<Vec<Annotation>>,
}
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>>
External Ids for this team
status: Option<CodeDt>
proposed | active | suspended | inactive | entered-in-error
category: Option<Vec<CodeableConcept>>
Type of team
name: Option<StringDt>
Name of the team, such as crisis assessment team
subject: Option<Reference>
Who care team is for
period: Option<Period>
Time period team covers
participant: Option<Vec<CareTeamParticipantBackboneElement>>
Members of the team
reason: Option<Vec<CodeableReference>>
Why the care team exists
managing_organization: Option<Vec<Reference>>
Organization responsible for the care team
telecom: Option<Vec<ContactPoint>>
A contact detail for the care team (that applies to all members)
note: Option<Vec<Annotation>>
Comments made about the CareTeam
Implementations§
Source§impl CareTeam
impl CareTeam
pub fn set_identifier(self, v: Vec<Identifier>) -> Self
pub fn add_identifier(self, v: Identifier) -> Self
pub fn set_status<T: Into<CodeDt>>(self, v: T) -> Self
pub fn set_category(self, v: Vec<CodeableConcept>) -> Self
pub fn add_category(self, v: CodeableConcept) -> Self
pub fn set_name<T: Into<StringDt>>(self, v: T) -> Self
pub fn set_subject(self, v: Reference) -> Self
pub fn set_period(self, v: Period) -> Self
pub fn set_participant(self, v: Vec<CareTeamParticipantBackboneElement>) -> Self
pub fn add_participant(self, v: CareTeamParticipantBackboneElement) -> Self
pub fn set_reason(self, v: Vec<CodeableReference>) -> Self
pub fn add_reason(self, v: CodeableReference) -> Self
pub fn set_managing_organization(self, v: Vec<Reference>) -> Self
pub fn add_managing_organization(self, v: Reference) -> Self
pub fn set_telecom(self, v: Vec<ContactPoint>) -> Self
pub fn add_telecom(self, v: ContactPoint) -> Self
pub fn set_note(self, v: Vec<Annotation>) -> Self
pub fn add_note(self, v: Annotation) -> Self
Trait Implementations§
Source§impl Convert for CareTeam
impl Convert for CareTeam
fn to_integer(&self) -> Result<Integer>
fn to_decimal(&self) -> Result<Decimal>
fn to_strings(&self) -> Result<String>
fn to_datetime(&self) -> Result<DateTime>
fn to_boolean(&self) -> Result<Boolean>
Source§impl<'de> Deserialize<'de> for CareTeam
impl<'de> Deserialize<'de> for CareTeam
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
Source§impl DomainResource for CareTeam
impl DomainResource for CareTeam
fn extension(&self) -> &Option<Vec<Extension>>
fn set_extension(self, ext: Vec<Extension>) -> Self
fn add_extension(self, ext: Extension) -> Self
fn modifier_extension(&self) -> &Option<Vec<Extension>>
fn set_modifier_extension(self, ext: Vec<Extension>) -> Self
fn add_modifier_extension(self, ext: Extension) -> Self
Source§impl Executor for CareTeam
impl Executor for CareTeam
fn element(&self, symbol: &String, index: &Option<usize>) -> Result<Collection>
fn to_collection(&self, index: &Option<usize>) -> Collection
fn child(&self, _index: usize) -> Result<Collection>
Auto Trait Implementations§
impl Freeze for CareTeam
impl RefUnwindSafe for CareTeam
impl Send for CareTeam
impl Sync for CareTeam
impl Unpin for CareTeam
impl UnwindSafe for CareTeam
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more