[][src]Struct google_healthcare1_beta1::Segment

pub struct Segment {
    pub fields: Option<HashMap<String, String>>,
    pub set_id: Option<String>,
    pub segment_id: Option<String>,
}

A segment in a structured format.

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

Fields

fields: Option<HashMap<String, String>>

A mapping from the positional location to the value. The key string uses zero-based indexes separated by dots to identify Fields, components and sub-components. A bracket notation is also used to identify different instances of a repeated field. Regex for key: (\d+)([\d+])?(.\d+)?(.\d+)?

Examples of (key, value) pairs:

  • (0.1, "foo"): Component 1 of Field 0 has the value "foo".
  • (1.1.2, "bar"): Sub-component 2 of Component 1 of field 1 has the value "bar".
  • (1[2].1, "baz"): Component 1 of Instance 2 of Field 1, which is repeated, has the value "baz".
set_id: Option<String>

Set ID for segments that can be in a set. This can be empty if it is missing or it is not applicable.

segment_id: Option<String>

A string that indicates the type of segment, e.g., EVN, PID.

Trait Implementations

impl Part for Segment[src]

impl Default for Segment[src]

impl Clone for Segment[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Segment[src]

impl Serialize for Segment[src]

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

Auto Trait Implementations

impl Send for Segment

impl Unpin for Segment

impl Sync for Segment

impl UnwindSafe for Segment

impl RefUnwindSafe for Segment

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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