pub struct SqliteParamsQuery(pub Vec<Value>);
Expand description
Wrapper for SQLite parameters for queries.
Tuple Fields§
§0: Vec<Value>
Trait Implementations§
Source§impl<'a> ParamConverter<'a> for SqliteParamsQuery
impl<'a> ParamConverter<'a> for SqliteParamsQuery
type Converted = SqliteParamsQuery
Source§fn convert_sql_params(
params: &[RowValues],
mode: ConversionMode,
) -> Result<Self::Converted, SqlMiddlewareDbError>
fn convert_sql_params( params: &[RowValues], mode: ConversionMode, ) -> Result<Self::Converted, SqlMiddlewareDbError>
Convert a slice of RowValues into the backend’s parameter type.
Source§fn supports_mode(mode: ConversionMode) -> bool
fn supports_mode(mode: ConversionMode) -> bool
Check if this converter supports the given mode Read more
Auto Trait Implementations§
impl Freeze for SqliteParamsQuery
impl RefUnwindSafe for SqliteParamsQuery
impl Send for SqliteParamsQuery
impl Sync for SqliteParamsQuery
impl Unpin for SqliteParamsQuery
impl UnwindSafe for SqliteParamsQuery
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