pub enum SqliteParam {
Null,
Integer(i64),
Real(f64),
Text(String),
Bool(bool),
}Expand description
A parameter value for parameterized SQL execution.
Variants§
Trait Implementations§
Source§impl Clone for SqliteParam
impl Clone for SqliteParam
Source§fn clone(&self) -> SqliteParam
fn clone(&self) -> SqliteParam
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Freeze for SqliteParam
impl RefUnwindSafe for SqliteParam
impl Send for SqliteParam
impl Sync for SqliteParam
impl Unpin for SqliteParam
impl UnsafeUnpin for SqliteParam
impl UnwindSafe for SqliteParam
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