pub struct CommitRowOp {
pub entity_path: String,
pub key: Vec<u8>,
pub before: Option<Vec<u8>>,
pub after: Option<Vec<u8>>,
}Expand description
CommitRowOp
Row-level mutation recorded in a commit marker.
Store identity is derived from entity_path at apply/recovery time.
Fields§
§entity_path: String§key: Vec<u8>§before: Option<Vec<u8>>§after: Option<Vec<u8>>Implementations§
Trait Implementations§
Source§impl Clone for CommitRowOp
impl Clone for CommitRowOp
Source§fn clone(&self) -> CommitRowOp
fn clone(&self) -> CommitRowOp
Returns a duplicate of the value. Read more
1.0.0 · 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 CommitRowOp
impl Debug for CommitRowOp
Source§impl<'de> Deserialize<'de> for CommitRowOp
impl<'de> Deserialize<'de> for CommitRowOp
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 CommitRowOp
impl RefUnwindSafe for CommitRowOp
impl Send for CommitRowOp
impl Sync for CommitRowOp
impl Unpin for CommitRowOp
impl UnsafeUnpin for CommitRowOp
impl UnwindSafe for CommitRowOp
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