pub enum Row {
Integer(BTreeMap<i64, i32>),
Text(BTreeMap<i64, String>),
Real(BTreeMap<i64, f32>),
Bool(BTreeMap<i64, bool>),
None,
}Expand description
The schema for each SQL row in every table is represented in memory by following structure
This is an enum representing each of the available types organized in a BTreeMap data structure, using the ROWID and key and each corresponding type as value
Variants§
Integer(BTreeMap<i64, i32>)
Text(BTreeMap<i64, String>)
Real(BTreeMap<i64, f32>)
Bool(BTreeMap<i64, bool>)
None
Implementations§
Trait Implementations§
impl StructuralPartialEq for Row
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnsafeUnpin for Row
impl UnwindSafe for Row
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