pub struct CommitIndexOp {
pub store: String,
pub key: Vec<u8>,
pub value: Option<Vec<u8>>,
}Expand description
CommitIndexOp
Internal index mutation used during row-op preparation/apply. Not persisted in commit markers.
Fields§
§store: String§key: Vec<u8>§value: Option<Vec<u8>>Trait Implementations§
Source§impl Clone for CommitIndexOp
impl Clone for CommitIndexOp
Source§fn clone(&self) -> CommitIndexOp
fn clone(&self) -> CommitIndexOp
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 CommitIndexOp
impl Debug for CommitIndexOp
Source§impl<'de> Deserialize<'de> for CommitIndexOp
impl<'de> Deserialize<'de> for CommitIndexOp
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 CommitIndexOp
impl RefUnwindSafe for CommitIndexOp
impl Send for CommitIndexOp
impl Sync for CommitIndexOp
impl Unpin for CommitIndexOp
impl UnsafeUnpin for CommitIndexOp
impl UnwindSafe for CommitIndexOp
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