pub struct Compiled {
pub target: Target,
pub sql: String,
pub params: Vec<Value>,
pub residual: Query,
}Expand description
A compiled plan before execution: the statement, its params and the residual query. Pure — what the planner would run, for inspection.
Fields§
§target: Target§sql: String§params: Vec<Value>§residual: QueryTrait Implementations§
impl StructuralPartialEq for Compiled
Auto Trait Implementations§
impl Freeze for Compiled
impl RefUnwindSafe for Compiled
impl Send for Compiled
impl Sync for Compiled
impl Unpin for Compiled
impl UnsafeUnpin for Compiled
impl UnwindSafe for Compiled
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