pub struct OpStoreRow {
pub id: i64,
pub collection: String,
pub record_key: String,
pub op_kind: String,
pub payload: String,
pub schema_id: Option<String>,
pub write_cursor: u64,
}Expand description
Slice 30 (G3) — one operational_mutations row returned by read.collection
/ read.mutations. id is the autoincrement PK (the after-id cursor key).
Fields§
§id: i64§collection: String§record_key: String§op_kind: String§payload: String§schema_id: Option<String>§write_cursor: u64Trait Implementations§
Source§impl Clone for OpStoreRow
impl Clone for OpStoreRow
Source§fn clone(&self) -> OpStoreRow
fn clone(&self) -> OpStoreRow
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 OpStoreRow
impl Debug for OpStoreRow
impl Eq for OpStoreRow
Source§impl PartialEq for OpStoreRow
impl PartialEq for OpStoreRow
Source§fn eq(&self, other: &OpStoreRow) -> bool
fn eq(&self, other: &OpStoreRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OpStoreRow
Auto Trait Implementations§
impl Freeze for OpStoreRow
impl RefUnwindSafe for OpStoreRow
impl Send for OpStoreRow
impl Sync for OpStoreRow
impl Unpin for OpStoreRow
impl UnsafeUnpin for OpStoreRow
impl UnwindSafe for OpStoreRow
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