pub enum SyncOperation {
Status,
Pull,
Ack,
}Expand description
Private sync protocol operation names. Keep this enum small and low-cardinality: replica ids belong in authenticated responses, not labels.
Variants§
Trait Implementations§
Source§impl Clone for SyncOperation
impl Clone for SyncOperation
Source§fn clone(&self) -> SyncOperation
fn clone(&self) -> SyncOperation
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 moreimpl Copy for SyncOperation
Source§impl Debug for SyncOperation
impl Debug for SyncOperation
impl Eq for SyncOperation
Source§impl PartialEq for SyncOperation
impl PartialEq for SyncOperation
impl StructuralPartialEq for SyncOperation
Auto Trait Implementations§
impl Freeze for SyncOperation
impl RefUnwindSafe for SyncOperation
impl Send for SyncOperation
impl Sync for SyncOperation
impl Unpin for SyncOperation
impl UnsafeUnpin for SyncOperation
impl UnwindSafe for SyncOperation
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