pub struct PipelineQuery {
pub sql: String,
pub params: Vec<FilterValue>,
pub expect_rows: bool,
}Expand description
A single query in a pipeline.
Fields§
§sql: StringThe SQL query.
params: Vec<FilterValue>Query parameters.
expect_rows: boolWhether this query returns rows.
Trait Implementations§
Source§impl Clone for PipelineQuery
impl Clone for PipelineQuery
Source§fn clone(&self) -> PipelineQuery
fn clone(&self) -> PipelineQuery
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 moreAuto Trait Implementations§
impl Freeze for PipelineQuery
impl RefUnwindSafe for PipelineQuery
impl Send for PipelineQuery
impl Sync for PipelineQuery
impl Unpin for PipelineQuery
impl UnwindSafe for PipelineQuery
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