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> Freeze for SqliteValue<'row, 'stmt, 'query>
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> 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