[][src]Struct rusoto_cognito_sync::Record

pub struct Record {
    pub device_last_modified_date: Option<f64>,
    pub key: Option<String>,
    pub last_modified_by: Option<String>,
    pub last_modified_date: Option<f64>,
    pub sync_count: Option<i64>,
    pub value: Option<String>,
}

The basic data structure of a dataset.

Fields

device_last_modified_date: Option<f64>

The last modified date of the client device.

key: Option<String>

The key for the record.

last_modified_by: Option<String>

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

last_modified_date: Option<f64>

The date on which the record was last modified.

sync_count: Option<i64>

The server sync count for this record.

value: Option<String>

The value for the record.

Trait Implementations

impl Default for Record[src]

impl Clone for Record[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Record> for Record[src]

impl Debug for Record[src]

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

Auto Trait Implementations

impl Send for Record

impl Sync for Record

Blanket Implementations

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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<T> for T

type Output = T

Should always be Self