Enum sqlx_core::sqlite::SqliteArgumentValue
source · pub enum SqliteArgumentValue<'q> {
Null,
Text(Cow<'q, str>),
Blob(Cow<'q, [u8]>),
Double(f64),
Int(i32),
Int64(i64),
}
Variants§
Trait Implementations§
source§impl<'q> Clone for SqliteArgumentValue<'q>
impl<'q> Clone for SqliteArgumentValue<'q>
source§fn clone(&self) -> SqliteArgumentValue<'q>
fn clone(&self) -> SqliteArgumentValue<'q>
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 more