Struct rusoto_cognito_sync::ListDatasetsResponse[][src]

pub struct ListDatasetsResponse {
    pub count: Option<i64>,
    pub datasets: Option<Vec<Dataset>>,
    pub next_token: Option<String>,
}

Returned for a successful ListDatasets request.

Fields

Number of datasets returned.

A set of datasets.

A pagination token for obtaining the next page of results.

Trait Implementations

impl Default for ListDatasetsResponse
[src]

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

impl Debug for ListDatasetsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListDatasetsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListDatasetsResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations