pub struct CompiledQuery {
pub sql: String,
pub binds: Vec<BindValue>,
pub shape_hash: ShapeHash,
pub driving_table: DrivingTable,
pub hints: ExecutionHints,
}Expand description
A fully compiled query ready for execution against SQLite.
Fields§
§sql: StringThe generated SQL text.
binds: Vec<BindValue>Positional bind parameters for the SQL.
shape_hash: ShapeHashStructural shape hash for caching.
driving_table: DrivingTableThe driving table chosen by the query planner.
hints: ExecutionHintsExecution hints derived from the query shape.
Trait Implementations§
Source§impl Clone for CompiledQuery
impl Clone for CompiledQuery
Source§fn clone(&self) -> CompiledQuery
fn clone(&self) -> CompiledQuery
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 CompiledQuery
impl Debug for CompiledQuery
Source§impl PartialEq for CompiledQuery
impl PartialEq for CompiledQuery
impl Eq for CompiledQuery
impl StructuralPartialEq for CompiledQuery
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