Struct sqlx_core::sqlite::SqliteValue
source · [−]pub struct SqliteValue { /* private fields */ }
Trait Implementations
sourceimpl Clone for SqliteValue
impl Clone for SqliteValue
sourcefn clone(&self) -> SqliteValue
fn clone(&self) -> SqliteValue
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Value for SqliteValue
impl Value for SqliteValue
type Database = Sqlite
sourcefn as_ref(&self) -> SqliteValueRef<'_>
fn as_ref(&self) -> SqliteValueRef<'_>
Get this value as a reference.
sourcefn type_info(&self) -> Cow<'_, SqliteTypeInfo>
fn type_info(&self) -> Cow<'_, SqliteTypeInfo>
Get the type information for this value.
sourcefn decode<'r, T>(&'r self) -> T where
T: Decode<'r, Self::Database> + Type<Self::Database>,
fn decode<'r, T>(&'r self) -> T where
T: Decode<'r, Self::Database> + Type<Self::Database>,
Decode this single value into the requested type. Read more
sourcefn decode_unchecked<'r, T>(&'r self) -> T where
T: Decode<'r, Self::Database>,
fn decode_unchecked<'r, T>(&'r self) -> T where
T: Decode<'r, Self::Database>,
Decode this single value into the requested type. Read more
Auto Trait Implementations
impl RefUnwindSafe for SqliteValue
impl Send for SqliteValue
impl Sync for SqliteValue
impl Unpin for SqliteValue
impl UnwindSafe for SqliteValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more