pub struct CalendarObjectSyncEntry {
pub uid: Box<str>,
pub etag: Box<str>,
pub deleted: bool,
pub updated_at: Timestamp,
}Expand description
One entry in a CalDAV sync-collection REPORT response. Tombstones (deleted: true) let
clients drop stale objects.
Fields§
§uid: Box<str>§etag: Box<str>§deleted: bool§updated_at: TimestampTrait Implementations§
Source§impl Clone for CalendarObjectSyncEntry
impl Clone for CalendarObjectSyncEntry
Source§fn clone(&self) -> CalendarObjectSyncEntry
fn clone(&self) -> CalendarObjectSyncEntry
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 CalendarObjectSyncEntry
impl RefUnwindSafe for CalendarObjectSyncEntry
impl Send for CalendarObjectSyncEntry
impl Sync for CalendarObjectSyncEntry
impl Unpin for CalendarObjectSyncEntry
impl UnsafeUnpin for CalendarObjectSyncEntry
impl UnwindSafe for CalendarObjectSyncEntry
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