Struct google_fitness1::Dataset[][src]

pub struct Dataset {
    pub min_start_time_ns: Option<String>,
    pub next_page_token: Option<String>,
    pub max_end_time_ns: Option<String>,
    pub data_source_id: Option<String>,
    pub point: Option<Vec<DataPoint>>,
}

A dataset represents a projection container for data points. They do not carry any info of their own. Datasets represent a set of data points from a particular data source. A data point can be found in more than one dataset.

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

The smallest start time of all data points in this possibly partial representation of the dataset. Time is in nanoseconds from epoch. This should also match the first part of the dataset identifier.

This token will be set when a dataset is received in response to a GET request and the dataset is too large to be included in a single response. Provide this value in a subsequent GET request to return the next page of data points within this dataset.

The largest end time of all data points in this possibly partial representation of the dataset. Time is in nanoseconds from epoch. This should also match the first part of the dataset identifier.

The data stream ID of the data source that created the points in this dataset.

A partial list of data points contained in the dataset, ordered by largest endTimeNanos first. This list is considered complete when retrieving a small dataset and partial when patching a dataset or retrieving a dataset that is too large to include in a single response.

Trait Implementations

impl Default for Dataset
[src]

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

impl Clone for Dataset
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Dataset
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Dataset
[src]

impl ResponseResult for Dataset
[src]

Auto Trait Implementations

impl Send for Dataset

impl Sync for Dataset