pub struct CompiledQuery {
pub sql: String,
pub params: Vec<SqliteParam>,
}Expand description
The compiled statement: SQL text (the statement-cache key) + ordered bind
params (the ? slots, in textual order).
Fields§
§sql: String§params: Vec<SqliteParam>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompiledQuery
impl RefUnwindSafe for CompiledQuery
impl Send for CompiledQuery
impl Sync for CompiledQuery
impl Unpin for CompiledQuery
impl UnsafeUnpin for CompiledQuery
impl UnwindSafe for CompiledQuery
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