pub struct DeltaFlags {
pub has_vector_clock: bool,
pub is_response: bool,
}Expand description
Flags for delta document
Fields§
§has_vector_clock: boolWhether vector clock is included
is_response: boolWhether this is a sync response (vs broadcast)
Implementations§
Trait Implementations§
Source§impl Clone for DeltaFlags
impl Clone for DeltaFlags
Source§fn clone(&self) -> DeltaFlags
fn clone(&self) -> DeltaFlags
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 moreSource§impl Debug for DeltaFlags
impl Debug for DeltaFlags
Source§impl Default for DeltaFlags
impl Default for DeltaFlags
Source§fn default() -> DeltaFlags
fn default() -> DeltaFlags
Returns the “default value” for a type. Read more
impl Copy for DeltaFlags
Auto Trait Implementations§
impl Freeze for DeltaFlags
impl RefUnwindSafe for DeltaFlags
impl Send for DeltaFlags
impl Sync for DeltaFlags
impl Unpin for DeltaFlags
impl UnwindSafe for DeltaFlags
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