pub struct Record<C, V> {
pub fields: HashMap<C, V>,
pub column_versions: HashMap<C, ColumnVersion>,
pub lowest_local_db_version: u64,
pub highest_local_db_version: u64,
}Expand description
Represents a record in the CRDT.
Fields§
§fields: HashMap<C, V>§column_versions: HashMap<C, ColumnVersion>§lowest_local_db_version: u64Track version boundaries for efficient filtering
highest_local_db_version: u64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<C, V> Freeze for Record<C, V>
impl<C, V> RefUnwindSafe for Record<C, V>where
C: RefUnwindSafe,
V: RefUnwindSafe,
impl<C, V> Send for Record<C, V>
impl<C, V> Sync for Record<C, V>
impl<C, V> Unpin for Record<C, V>
impl<C, V> UnwindSafe for Record<C, V>where
C: UnwindSafe,
V: UnwindSafe,
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