Enum diesel::sqlite::SqliteType [−][src]
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
impl Hash for SqliteType
[src]
[+]
impl Hash for SqliteType
impl PartialEq for SqliteType
[src]
[+]
impl PartialEq for SqliteType
impl Eq for SqliteType
[src]
impl Eq for SqliteType
impl Clone for SqliteType
[src]
[+]
impl Clone for SqliteType
impl Copy for SqliteType
[src]
impl Copy for SqliteType
Auto Trait Implementations
impl Send for SqliteType
impl Send for SqliteType
impl Sync for SqliteType
impl Sync for SqliteType