pub struct WalCommitDelta {
pub semantic_op_index: u32,
pub delta: WalDelta,
}Expand description
Associates a materialized WAL delta with the semantic operation that produced it.
See logical commits.
Fields§
§semantic_op_index: u32Zero-based request-operation position used to attribute one or more resulting deltas.
delta: WalDeltaReplay mutation produced for that semantic operation.
Trait Implementations§
Source§impl Clone for WalCommitDelta
impl Clone for WalCommitDelta
Source§fn clone(&self) -> WalCommitDelta
fn clone(&self) -> WalCommitDelta
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 WalCommitDelta
impl Debug for WalCommitDelta
Source§impl<'de> Deserialize<'de> for WalCommitDelta
impl<'de> Deserialize<'de> for WalCommitDelta
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
impl Eq for WalCommitDelta
Source§impl PartialEq for WalCommitDelta
impl PartialEq for WalCommitDelta
Source§impl Serialize for WalCommitDelta
impl Serialize for WalCommitDelta
impl StructuralPartialEq for WalCommitDelta
Auto Trait Implementations§
impl Freeze for WalCommitDelta
impl RefUnwindSafe for WalCommitDelta
impl Send for WalCommitDelta
impl Sync for WalCommitDelta
impl Unpin for WalCommitDelta
impl UnsafeUnpin for WalCommitDelta
impl UnwindSafe for WalCommitDelta
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