Struct google_fitness1::AggregateBucket[][src]

pub struct AggregateBucket {
    pub session: Option<Session>,
    pub end_time_millis: Option<String>,
    pub activity: Option<i32>,
    pub start_time_millis: Option<String>,
    pub type_: Option<String>,
    pub dataset: Option<Vec<Dataset>>,
}

There is no detailed description.

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

Fields

Available for Bucket.Type.SESSION

The end time for the aggregated data, in milliseconds since epoch, inclusive.

Available for Bucket.Type.ACTIVITY_TYPE, Bucket.Type.ACTIVITY_SEGMENT

The start time for the aggregated data, in milliseconds since epoch, inclusive.

The type of a bucket signifies how the data aggregation is performed in the bucket.

There will be one dataset per AggregateBy in the request.

Trait Implementations

impl Default for AggregateBucket
[src]

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

impl Clone for AggregateBucket
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AggregateBucket
[src]

Formats the value using the given formatter. Read more

impl Part for AggregateBucket
[src]

Auto Trait Implementations