pub struct PipelineQuery {
pub sql: String,
pub param_types: Vec<u32>,
pub params: Vec<Option<Vec<u8>>>,
}Expand description
A single query in a pipeline with its bound parameters.
Fields§
§sql: String§param_types: Vec<u32>§params: Vec<Option<Vec<u8>>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PipelineQuery
impl RefUnwindSafe for PipelineQuery
impl Send for PipelineQuery
impl Sync for PipelineQuery
impl Unpin for PipelineQuery
impl UnsafeUnpin 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