[][src]Struct google_healthcare1_beta1::SchemaPackage

pub struct SchemaPackage {
    pub ignore_min_occurs: Option<bool>,
    pub schematized_parsing_type: Option<String>,
    pub types: Option<Vec<Hl7TypesConfig>>,
    pub schemas: Option<Vec<Hl7SchemaConfig>>,
}

A schema package contains a set of schemas and type definitions.

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

Fields

ignore_min_occurs: Option<bool>

Flag to ignore all min_occurs restrictions in the schema. This means that incoming messages can omit any group, segment, field, component, or subcomponent.

schematized_parsing_type: Option<String>

Determines how messages that don't parse successfully are handled.

types: Option<Vec<Hl7TypesConfig>>

Schema type definitions that are layered based on their VersionSources that match the incoming message. Type definitions present in higher indices override those in lower indices with the same type name if their VersionSources all match an incoming message.

schemas: Option<Vec<Hl7SchemaConfig>>

Schema configs that are layered based on their VersionSources that match the incoming message. Schema configs present in higher indices override those in lower indices with the same message type and trigger event if their VersionSources all match an incoming message.

Trait Implementations

impl Clone for SchemaPackage[src]

impl Debug for SchemaPackage[src]

impl Default for SchemaPackage[src]

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

impl Part for SchemaPackage[src]

impl Serialize for SchemaPackage[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