Enum sqlx_oldapi::sqlite::SqliteArgumentValue  
source · pub enum SqliteArgumentValue<'q> {
    Null,
    Text(Cow<'q, str>),
    Blob(Cow<'q, [u8]>),
    Double(f64),
    Int(i32),
    Int64(i64),
}Available on crate feature 
sqlite only.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 moreAuto Trait Implementations§
impl<'q> RefUnwindSafe for SqliteArgumentValue<'q>
impl<'q> Send for SqliteArgumentValue<'q>
impl<'q> Sync for SqliteArgumentValue<'q>
impl<'q> Unpin for SqliteArgumentValue<'q>
impl<'q> UnwindSafe for SqliteArgumentValue<'q>
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