#[repr(u8)]pub enum SyncDataOp {
Document = 1,
Vector = 2,
Ack = 3,
End = 255,
}Expand description
Sync Data operation types
Variants§
Document = 1
Document sync message
Vector = 2
Sync vector update
Ack = 3
Acknowledgement
End = 255
End of sync
Trait Implementations§
Source§impl Clone for SyncDataOp
impl Clone for SyncDataOp
Source§fn clone(&self) -> SyncDataOp
fn clone(&self) -> SyncDataOp
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 SyncDataOp
impl Debug for SyncDataOp
Source§impl From<u8> for SyncDataOp
impl From<u8> for SyncDataOp
Source§impl PartialEq for SyncDataOp
impl PartialEq for SyncDataOp
impl Copy for SyncDataOp
impl Eq for SyncDataOp
impl StructuralPartialEq for SyncDataOp
Auto Trait Implementations§
impl Freeze for SyncDataOp
impl RefUnwindSafe for SyncDataOp
impl Send for SyncDataOp
impl Sync for SyncDataOp
impl Unpin for SyncDataOp
impl UnwindSafe for SyncDataOp
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