pub struct ContactSyncEntry {
pub uid: Box<str>,
pub etag: Box<str>,
pub deleted: bool,
pub updated_at: Timestamp,
}Expand description
One entry in a CardDAV sync-collection REPORT response. Tombstones (deleted: true)
let clients drop stale cards.
Fields§
§uid: Box<str>§etag: Box<str>§deleted: bool§updated_at: TimestampTrait Implementations§
Source§impl Clone for ContactSyncEntry
impl Clone for ContactSyncEntry
Source§fn clone(&self) -> ContactSyncEntry
fn clone(&self) -> ContactSyncEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContactSyncEntry
impl RefUnwindSafe for ContactSyncEntry
impl Send for ContactSyncEntry
impl Sync for ContactSyncEntry
impl Unpin for ContactSyncEntry
impl UnsafeUnpin for ContactSyncEntry
impl UnwindSafe for ContactSyncEntry
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