pub enum ValueType {
Text,
Integer,
Float,
Blob,
Null,
}
Expand description
Possible values that sqlite3_value_type will return for a value.
Variants§
Text
text or a string, aka SQLITE_TEXT
Integer
Integer, aka SQLITE_INTEGER
Float
Float/double, aka SQLITE_FLOAT
Blob
blob, aka SQLITE_BLOB
Null
NULL, aka SQLITE_NULL
Trait Implementations§
impl Eq for ValueType
impl StructuralPartialEq for ValueType
Auto Trait Implementations§
impl Freeze for ValueType
impl RefUnwindSafe for ValueType
impl Send for ValueType
impl Sync for ValueType
impl Unpin for ValueType
impl UnwindSafe for ValueType
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