pub struct RawProperties {
pub database_id: String,
pub lang: String,
pub version: String,
pub email: String,
pub sync_timestamp: Option<String>,
pub update_timestamp: Option<String>,
}Expand description
Raw properties data from database
Fields§
§database_id: StringUnique database identifier
lang: StringDatabase language code (e.g. “en”, “de”)
version: StringDatabase schema version
email: StringEncryption iteration count (stored in the legacy email column)
sync_timestamp: Option<String>Last cloud sync timestamp
update_timestamp: Option<String>Last local update timestamp
Trait Implementations§
Source§impl Clone for RawProperties
impl Clone for RawProperties
Source§fn clone(&self) -> RawProperties
fn clone(&self) -> RawProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RawProperties
impl RefUnwindSafe for RawProperties
impl Send for RawProperties
impl Sync for RawProperties
impl Unpin for RawProperties
impl UnsafeUnpin for RawProperties
impl UnwindSafe for RawProperties
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more