Enum diesel::sqlite::SqliteType
source · pub enum SqliteType {
Binary,
Text,
Float,
Double,
SmallInt,
Integer,
Long,
}
Available on crate feature
sqlite
only.Expand description
Determines how a bind parameter is given to SQLite
Diesel deals with bind parameters after serialization as opaque blobs of bytes. However, SQLite instead has several functions where it expects the relevant C types.
The variants of this struct determine what bytes are expected from
ToSql
impls.
Variants§
Binary
Bind using sqlite3_bind_blob
Text
Bind using sqlite3_bind_text
Float
bytes
should contain an f32
Double
bytes
should contain an f64
SmallInt
bytes
should contain an i16
Integer
bytes
should contain an i32
Long
bytes
should contain an i64
Trait Implementations§
source§impl Clone for SqliteType
impl Clone for SqliteType
source§fn clone(&self) -> SqliteType
fn clone(&self) -> SqliteType
Returns a copy 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 Hash for SqliteType
impl Hash for SqliteType
source§impl PartialEq for SqliteType
impl PartialEq for SqliteType
source§fn eq(&self, other: &SqliteType) -> bool
fn eq(&self, other: &SqliteType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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