pub enum SearchParam {
Boolean(bool),
String(String),
StringVec(Vec<String>),
Integer64(i64),
Float64(f64),
Value(Value),
}
Variants§
Trait Implementations§
Source§impl Clone for SearchParam
impl Clone for SearchParam
Source§fn clone(&self) -> SearchParam
fn clone(&self) -> SearchParam
Returns a duplicate 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 moreSource§impl Debug for SearchParam
impl Debug for SearchParam
Source§impl Display for SearchParam
impl Display for SearchParam
Source§impl ToSql for SearchParam
impl ToSql for SearchParam
Source§fn to_sql(&self) -> Result<ToSqlOutput<'_>>
fn to_sql(&self) -> Result<ToSqlOutput<'_>>
Converts Rust value to SQLite value
Auto Trait Implementations§
impl Freeze for SearchParam
impl RefUnwindSafe for SearchParam
impl Send for SearchParam
impl Sync for SearchParam
impl Unpin for SearchParam
impl UnwindSafe for SearchParam
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