#[non_exhaustive]pub enum GossipDecision {
SendEnvelope,
RequestMerge,
MergeBoth,
Same,
}Expand description
Decision the receiver makes after comparing version vectors.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SendEnvelope
We’re newer — send our envelope.
RequestMerge
We’re older — request theirs.
MergeBoth
Concurrent — merge both.
Same
Identical — nothing to do.
Trait Implementations§
Source§impl Clone for GossipDecision
impl Clone for GossipDecision
Source§fn clone(&self) -> GossipDecision
fn clone(&self) -> GossipDecision
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 moreSource§impl Debug for GossipDecision
impl Debug for GossipDecision
Source§impl PartialEq for GossipDecision
impl PartialEq for GossipDecision
Source§fn eq(&self, other: &GossipDecision) -> bool
fn eq(&self, other: &GossipDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GossipDecision
impl Eq for GossipDecision
impl StructuralPartialEq for GossipDecision
Auto Trait Implementations§
impl Freeze for GossipDecision
impl RefUnwindSafe for GossipDecision
impl Send for GossipDecision
impl Sync for GossipDecision
impl Unpin for GossipDecision
impl UnsafeUnpin for GossipDecision
impl UnwindSafe for GossipDecision
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.