pub enum SqliteArgumentValue {
Null,
Text(String),
Blob(Vec<u8>),
Double(f64),
Int(i32),
Int64(i64),
}
Variants§
Trait Implementations§
source§impl Clone for SqliteArgumentValue
impl Clone for SqliteArgumentValue
source§fn clone(&self) -> SqliteArgumentValue
fn clone(&self) -> SqliteArgumentValue
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