pub struct PipelineQuery<'a, 'b> { /* private fields */ }
Trait Implementations§
Source§impl<'s> Encode for PipelineQuery<'s, '_>
impl<'s> Encode for PipelineQuery<'s, '_>
Source§type Output = Vec<&'s [Column]>
type Output = Vec<&'s [Column]>
output type defines how a potential async row streaming type should be constructed.
certain state from the encode type may need to be passed for constructing the stream
fn encode<const SYNC_MODE: bool>( self, buf_drv: &mut BytesMut, ) -> Result<Self::Output, Error>
Auto Trait Implementations§
impl<'a, 'b> Freeze for PipelineQuery<'a, 'b>
impl<'a, 'b> RefUnwindSafe for PipelineQuery<'a, 'b>
impl<'a, 'b> Send for PipelineQuery<'a, 'b>
impl<'a, 'b> Sync for PipelineQuery<'a, 'b>
impl<'a, 'b> Unpin for PipelineQuery<'a, 'b>
impl<'a, 'b> UnwindSafe for PipelineQuery<'a, 'b>
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