[][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

count: Option<i64>

Total number of records.

dataset_deleted_after_requested_sync_count: Option<bool>

A boolean value specifying whether to delete the dataset locally.

dataset_exists: Option<bool>

Indicates whether the dataset exists.

dataset_sync_count: Option<i64>

Server sync count for this dataset.

last_modified_by: Option<String>

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

merged_dataset_names: Option<Vec<String>>

Names of merged datasets.

next_token: Option<String>

A pagination token for obtaining the next page of results.

records: Option<Vec<Record>>

A list of all records.

sync_session_token: Option<String>

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

Trait Implementations

impl PartialEq<ListRecordsResponse> for ListRecordsResponse[src]

impl Default for ListRecordsResponse[src]

impl Clone for ListRecordsResponse[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ListRecordsResponse[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self