pub enum Value {
Integer(i64),
Float(f64),
Text(String),
Blob(Blob),
Null,
}
Expand description
Stores an SQLite-compatible value owned by Rust code.
Variants§
Trait Implementations§
impl StructuralPartialEq for Value
impl ToContextResult for Value
Sets a dynamically typed Value to the context result.
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl !Send for Value
impl !Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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