[][src]Struct google_fitness1::AggregateBucket

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

session: Option<Session>

Available for Bucket.Type.SESSION

end_time_millis: Option<String>

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

activity: Option<i32>

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

start_time_millis: Option<String>

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

type_: Option<String>

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

dataset: Option<Vec<Dataset>>

There will be one dataset per AggregateBy in the request.

Trait Implementations

impl Clone for AggregateBucket[src]

impl Debug for AggregateBucket[src]

impl Default for AggregateBucket[src]

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

impl Part for AggregateBucket[src]

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