pub struct RowID {
pub table: String,
pub rowid: i64,
}Expand description
Identifies a row across the MvStore. v0 keys by table name +
rowid because the engine doesn’t yet have a stable numeric
table_id (the schema catalog is keyed by name). When 11.5
lands a numeric table id (likely as part of the checkpoint
integration so the index doesn’t carry a String per row),
flip this to (u32, i64) — every consumer of RowID only
uses it for hashing / equality, so the rename is local.
Fields§
§table: String§rowid: i64Implementations§
Trait Implementations§
impl Eq for RowID
impl StructuralPartialEq for RowID
Auto Trait Implementations§
impl Freeze for RowID
impl RefUnwindSafe for RowID
impl Send for RowID
impl Sync for RowID
impl Unpin for RowID
impl UnsafeUnpin for RowID
impl UnwindSafe for RowID
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.