Struct sqlx_core::sqlite::SqliteValue
source · pub struct SqliteValue { /* private fields */ }
Trait Implementations§
source§impl Clone for SqliteValue
impl Clone for SqliteValue
source§fn clone(&self) -> SqliteValue
fn clone(&self) -> SqliteValue
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 From<SqliteValue> for AnyValue
impl From<SqliteValue> for AnyValue
source§fn from(value: SqliteValue) -> Self
fn from(value: SqliteValue) -> Self
Converts to this type from the input type.
source§impl Value for SqliteValue
impl Value for SqliteValue
type Database = Sqlite
source§fn as_ref(&self) -> SqliteValueRef<'_>
fn as_ref(&self) -> SqliteValueRef<'_>
Get this value as a reference.
source§fn type_info(&self) -> Cow<'_, SqliteTypeInfo>
fn type_info(&self) -> Cow<'_, SqliteTypeInfo>
Get the type information for this value.
source§fn decode<'r, T>(&'r self) -> Twhere
T: Decode<'r, Self::Database> + Type<Self::Database>,
fn decode<'r, T>(&'r self) -> Twhere T: Decode<'r, Self::Database> + Type<Self::Database>,
Decode this single value into the requested type. Read more
source§fn decode_unchecked<'r, T>(&'r self) -> Twhere
T: Decode<'r, Self::Database>,
fn decode_unchecked<'r, T>(&'r self) -> Twhere T: Decode<'r, Self::Database>,
Decode this single value into the requested type. Read more