pub enum SQLiteAffinity {
Integer,
Text,
Blob,
Real,
Numeric,
Any,
}Expand description
SQLite type affinity classification.
Variants§
Trait Implementations§
Source§impl Clone for SQLiteAffinity
impl Clone for SQLiteAffinity
Source§fn clone(&self) -> SQLiteAffinity
fn clone(&self) -> SQLiteAffinity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SQLiteAffinity
impl Debug for SQLiteAffinity
Source§impl Hash for SQLiteAffinity
impl Hash for SQLiteAffinity
Source§impl PartialEq for SQLiteAffinity
impl PartialEq for SQLiteAffinity
Source§fn eq(&self, other: &SQLiteAffinity) -> bool
fn eq(&self, other: &SQLiteAffinity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SQLiteAffinity
impl Eq for SQLiteAffinity
impl StructuralPartialEq for SQLiteAffinity
Auto Trait Implementations§
impl Freeze for SQLiteAffinity
impl RefUnwindSafe for SQLiteAffinity
impl Send for SQLiteAffinity
impl Sync for SQLiteAffinity
impl Unpin for SQLiteAffinity
impl UnsafeUnpin for SQLiteAffinity
impl UnwindSafe for SQLiteAffinity
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