[][src]Struct google_healthcare1_beta1::Field

pub struct Field {
    pub max_occurs: Option<i32>,
    pub table: Option<String>,
    pub type_: Option<String>,
    pub name: Option<String>,
    pub min_occurs: Option<i32>,
}

A (sub) field of a type.

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 field can be repeated. 0 or -1 means unbounded.

table: Option<String>

The HL7v2 table this field refers to. For example, PID-15 (Patient's Primary Language) usually refers to table "0296".

type_: Option<String>

The type of this field. A Type with this name must be defined in an Hl7TypesConfig.

name: Option<String>

The name of the field. For example, "PID-1" or just "1".

min_occurs: Option<i32>

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

Trait Implementations

impl Clone for Field[src]

impl Debug for Field[src]

impl Default for Field[src]

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

impl Part for Field[src]

impl Serialize for Field[src]

Auto Trait Implementations

impl RefUnwindSafe for Field

impl Send for Field

impl Sync for Field

impl Unpin for Field

impl UnwindSafe for Field

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