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
Null
Text(Cow<'q, str>)
Blob(Cow<'q, [u8]>)
Double(f64)
Int(i32)
Int64(i64)
Trait Implementations
sourceimpl<'q> Clone for SqliteArgumentValue<'q>
impl<'q> Clone for SqliteArgumentValue<'q>
sourcefn clone(&self) -> SqliteArgumentValue<'q>
fn clone(&self) -> SqliteArgumentValue<'q>
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
Auto 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
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