pub enum ClusterNodeMessage {
Heartbeat {
at: LogicalTime,
sequence: u64,
},
ReplicatePut {
key: String,
value: Vec<u8>,
sequence: u64,
},
ReplicateInvalidate {
key: String,
sequence: u64,
},
ReplicateFlush {
sequence: u64,
},
Ack {
sequence: u64,
},
}Expand description
Transport-neutral cluster message emitted by a sans-IO node.
Variants§
Heartbeat
Heartbeat emitted by tick.
ReplicatePut
A replicated write.
ReplicateInvalidate
A replicated key invalidation.
ReplicateFlush
A replicated flush.
Ack
Acknowledgement for a received message.
Trait Implementations§
Source§impl Clone for ClusterNodeMessage
impl Clone for ClusterNodeMessage
Source§fn clone(&self) -> ClusterNodeMessage
fn clone(&self) -> ClusterNodeMessage
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 ClusterNodeMessage
impl Debug for ClusterNodeMessage
impl Eq for ClusterNodeMessage
Source§impl Ord for ClusterNodeMessage
impl Ord for ClusterNodeMessage
Source§fn cmp(&self, other: &ClusterNodeMessage) -> Ordering
fn cmp(&self, other: &ClusterNodeMessage) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ClusterNodeMessage
impl PartialEq for ClusterNodeMessage
Source§fn eq(&self, other: &ClusterNodeMessage) -> bool
fn eq(&self, other: &ClusterNodeMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ClusterNodeMessage
impl PartialOrd for ClusterNodeMessage
impl StructuralPartialEq for ClusterNodeMessage
Auto Trait Implementations§
impl Freeze for ClusterNodeMessage
impl RefUnwindSafe for ClusterNodeMessage
impl Send for ClusterNodeMessage
impl Sync for ClusterNodeMessage
impl Unpin for ClusterNodeMessage
impl UnsafeUnpin for ClusterNodeMessage
impl UnwindSafe for ClusterNodeMessage
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> Comparable<K> for Q
impl<Q, K> Comparable<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.