pub struct RowState {
pub row_id: String,
pub version: i64,
pub values: Map<String, Value>,
}Fields§
§row_id: String§version: i64Local synced version: -1 = optimistic, else the server version
(from a COMMIT change or a segment row record, §5.2/§5.6).
values: Map<String, Value>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RowState
impl RefUnwindSafe for RowState
impl Send for RowState
impl Sync for RowState
impl Unpin for RowState
impl UnsafeUnpin for RowState
impl UnwindSafe for RowState
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