pub enum SQLiteDataType {
Null = 0,
Integer = 1,
Real = 2,
Text = 3,
Blob = 4,
}Expand description
SQLite data types
Variants§
Trait Implementations§
Source§impl Clone for SQLiteDataType
impl Clone for SQLiteDataType
Source§fn clone(&self) -> SQLiteDataType
fn clone(&self) -> SQLiteDataType
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 SQLiteDataType
impl Debug for SQLiteDataType
Source§impl PartialEq for SQLiteDataType
impl PartialEq for SQLiteDataType
impl StructuralPartialEq for SQLiteDataType
Auto Trait Implementations§
impl Freeze for SQLiteDataType
impl RefUnwindSafe for SQLiteDataType
impl Send for SQLiteDataType
impl Sync for SQLiteDataType
impl Unpin for SQLiteDataType
impl UnwindSafe for SQLiteDataType
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