pub enum StateCatchUpOperation {
SetParam {
node_id: NodeId,
key: String,
value: Value,
},
DeleteParam {
node_id: NodeId,
key: String,
},
}Expand description
The kind of state mutation recorded in the replication log.
Variants§
Trait Implementations§
Source§impl Clone for StateCatchUpOperation
impl Clone for StateCatchUpOperation
Source§fn clone(&self) -> StateCatchUpOperation
fn clone(&self) -> StateCatchUpOperation
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 StateCatchUpOperation
impl Debug for StateCatchUpOperation
Source§impl<'de> Deserialize<'de> for StateCatchUpOperation
impl<'de> Deserialize<'de> for StateCatchUpOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StateCatchUpOperation
impl RefUnwindSafe for StateCatchUpOperation
impl Send for StateCatchUpOperation
impl Sync for StateCatchUpOperation
impl Unpin for StateCatchUpOperation
impl UnsafeUnpin for StateCatchUpOperation
impl UnwindSafe for StateCatchUpOperation
Blanket Implementations§
impl<T> Allocation for T
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