Struct google_fitness1::DataTypeField[][src]

pub struct DataTypeField {
    pub optional: Option<bool>,
    pub name: Option<String>,
    pub format: Option<String>,
}

In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.).

This message is only instantiated in code and not used for wire comms or stored in any way.

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

Fields

no description provided

Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.

The different supported formats for each field in a data type.

Trait Implementations

impl Default for DataTypeField
[src]

Returns the "default value" for a type. Read more

impl Clone for DataTypeField
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DataTypeField
[src]

Formats the value using the given formatter. Read more

impl Part for DataTypeField
[src]

Auto Trait Implementations