pub struct ConflictRecord {
pub client_commit_id: String,
pub op_index: i32,
pub table: String,
pub row_id: String,
pub code: String,
pub server_version: i64,
pub server_row: Map<String, Value>,
}Fields§
§client_commit_id: String§op_index: i32§table: String§row_id: String§code: String§server_version: i64§server_row: Map<String, Value>Driver row (bytes as {"$bytes": hex}), decoded from the conflict
record’s serverRow (§6.3).
Trait Implementations§
Source§impl Clone for ConflictRecord
impl Clone for ConflictRecord
Source§fn clone(&self) -> ConflictRecord
fn clone(&self) -> ConflictRecord
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 ConflictRecord
impl Debug for ConflictRecord
Auto Trait Implementations§
impl Freeze for ConflictRecord
impl RefUnwindSafe for ConflictRecord
impl Send for ConflictRecord
impl Sync for ConflictRecord
impl Unpin for ConflictRecord
impl UnsafeUnpin for ConflictRecord
impl UnwindSafe for ConflictRecord
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