Struct diesel::sqlite::SqliteValue
source · pub struct SqliteValue<'row, 'stmt, 'query> { /* private fields */ }
Available on crate feature
sqlite
only.Expand description
Raw sqlite value as received from the database
Use existing FromSql
implementations to convert this into
rust values
Implementations§
source§impl<'row, 'stmt, 'query> SqliteValue<'row, 'stmt, 'query>
impl<'row, 'stmt, 'query> SqliteValue<'row, 'stmt, 'query>
sourcepub fn value_type(&self) -> Option<SqliteType>
pub fn value_type(&self) -> Option<SqliteType>
Get the type of the value as returned by sqlite
Auto Trait Implementations§
impl<'row, 'stmt, 'query> !RefUnwindSafe for SqliteValue<'row, 'stmt, 'query>
impl<'row, 'stmt, 'query> !Send for SqliteValue<'row, 'stmt, 'query>
impl<'row, 'stmt, 'query> !Sync for SqliteValue<'row, 'stmt, 'query>
impl<'row, 'stmt, 'query> Unpin for SqliteValue<'row, 'stmt, 'query>
impl<'row, 'stmt, 'query> !UnwindSafe for SqliteValue<'row, 'stmt, 'query>
Blanket Implementations§
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> AsExprOf<Self, T>where
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
fn into_sql<T>(self) -> AsExprOf<Self, T>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,
Convert
self
to an expression for Diesel’s query builder. Read moresource§fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where
&'a Self: AsExpression<T>,
T: SqlType + TypedExpressionType,
fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,
Convert
&self
to an expression for Diesel’s query builder. Read more