[][src]Struct google_healthcare1_beta1::SchemaGroup

pub struct SchemaGroup {
    pub max_occurs: Option<i32>,
    pub min_occurs: Option<i32>,
    pub name: Option<String>,
    pub members: Option<Vec<GroupOrSegment>>,
    pub choice: Option<bool>,
}

An HL7v2 logical group construct.

This type is not used in any activity, and only used as part of another schema.

Fields

max_occurs: Option<i32>

The maximum number of times this group can be repeated. 0 or -1 means unbounded.

min_occurs: Option<i32>

The minimum number of times this group must be present/repeated.

name: Option<String>

The name of this group. For example, "ORDER_DETAIL".

members: Option<Vec<GroupOrSegment>>

Nested groups and/or segments.

choice: Option<bool>

True indicates that this is a choice group, meaning that only one of its segments can exist in a given message.

Trait Implementations

impl Clone for SchemaGroup[src]

impl Debug for SchemaGroup[src]

impl Default for SchemaGroup[src]

impl<'de> Deserialize<'de> for SchemaGroup[src]

impl Part for SchemaGroup[src]

impl Serialize for SchemaGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any