pub enum SQLiteType {
Blob,
Numeric,
Integer,
Real,
Text,
}Expand description
Encodes all Column-Datatypes available in SQLite, see here.
Variants§
Trait Implementations§
Source§impl Clone for SQLiteType
impl Clone for SQLiteType
Source§fn clone(&self) -> SQLiteType
fn clone(&self) -> SQLiteType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SQLiteType
impl Debug for SQLiteType
Source§impl Default for SQLiteType
impl Default for SQLiteType
Source§impl PartialEq for SQLiteType
impl PartialEq for SQLiteType
impl Copy for SQLiteType
impl Eq for SQLiteType
impl StructuralPartialEq for SQLiteType
Auto Trait Implementations§
impl Freeze for SQLiteType
impl RefUnwindSafe for SQLiteType
impl Send for SQLiteType
impl Sync for SQLiteType
impl Unpin for SQLiteType
impl UnwindSafe for SQLiteType
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