[][src]Struct google_fitness1::AggregateRequest

pub struct AggregateRequest {
    pub aggregate_by: Option<Vec<AggregateBy>>,
    pub bucket_by_activity_segment: Option<BucketByActivity>,
    pub end_time_millis: Option<String>,
    pub bucket_by_session: Option<BucketBySession>,
    pub bucket_by_activity_type: Option<BucketByActivity>,
    pub start_time_millis: Option<String>,
    pub filtered_data_quality_standard: Option<Vec<String>>,
    pub bucket_by_time: Option<BucketByTime>,
}

Next id: 10

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

aggregate_by: Option<Vec<AggregateBy>>

The specification of data to be aggregated. At least one aggregateBy spec must be provided. All data that is specified will be aggregated using the same bucketing criteria. There will be one dataset in the response for every aggregateBy spec.

bucket_by_activity_segment: Option<BucketByActivity>

Specifies that data be aggregated each activity segment recored for a user. Similar to bucketByActivitySegment, but bucketing is done for each activity segment rather than all segments of the same type. Mutually exclusive of other bucketing specifications.

end_time_millis: Option<String>

The end of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive.

bucket_by_session: Option<BucketBySession>

Specifies that data be aggregated by user sessions. Data that does not fall within the time range of a session will not be included in the response. Mutually exclusive of other bucketing specifications.

bucket_by_activity_type: Option<BucketByActivity>

Specifies that data be aggregated by the type of activity being performed when the data was recorded. All data that was recorded during a certain activity type (.for the given time range) will be aggregated into the same bucket. Data that was recorded while the user was not active will not be included in the response. Mutually exclusive of other bucketing specifications.

start_time_millis: Option<String>

The start of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive.

filtered_data_quality_standard: Option<Vec<String>>

DO NOT POPULATE THIS FIELD. It is ignored.

bucket_by_time: Option<BucketByTime>

Specifies that data be aggregated by a single time interval. Mutually exclusive of other bucketing specifications.

Trait Implementations

impl Clone for AggregateRequest[src]

impl Debug for AggregateRequest[src]

impl Default for AggregateRequest[src]

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

impl RequestValue for AggregateRequest[src]

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