pub struct IndexCell {
pub rowid: i64,
pub value: Value,
}Expand description
One (value, rowid) pair stored in a per-index B-Tree.
Fields§
§rowid: i64Rowid of the row in the base table that carries this value.
value: ValueThe indexed value. Always non-NULL (NULLs aren’t indexed).
Implementations§
Trait Implementations§
impl StructuralPartialEq for IndexCell
Auto Trait Implementations§
impl Freeze for IndexCell
impl RefUnwindSafe for IndexCell
impl Send for IndexCell
impl Sync for IndexCell
impl Unpin for IndexCell
impl UnsafeUnpin for IndexCell
impl UnwindSafe for IndexCell
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