[][src]Struct rusoto_cognito_sync::ListRecordsResponse

pub struct ListRecordsResponse {
    pub count: Option<i64>,
    pub dataset_deleted_after_requested_sync_count: Option<bool>,
    pub dataset_exists: Option<bool>,
    pub dataset_sync_count: Option<i64>,
    pub last_modified_by: Option<String>,
    pub merged_dataset_names: Option<Vec<String>>,
    pub next_token: Option<String>,
    pub records: Option<Vec<Record>>,
    pub sync_session_token: Option<String>,
}

Returned for a successful ListRecordsRequest.

Fields

Total number of records.

A boolean value specifying whether to delete the dataset locally.

Indicates whether the dataset exists.

Server sync count for this dataset.

The user/device that made the last change to this record.

Names of merged datasets.

A pagination token for obtaining the next page of results.

A list of all records.

A token containing a session ID, identity ID, and expiration.

Trait Implementations

impl Clone for ListRecordsResponse
[src]

Performs copy-assignment from source. Read more

impl Default for ListRecordsResponse
[src]

impl PartialEq<ListRecordsResponse> for ListRecordsResponse
[src]

impl Debug for ListRecordsResponse
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

Should always be Self