pub struct StatementPreparedQuery<'a, P> { /* private fields */ }Expand description
a named and already prepared statement with it’s query params
after Execute::query by certain excutor it would produce RowStream as response
Implementations§
Source§impl<'a, P> StatementPreparedQuery<'a, P>
impl<'a, P> StatementPreparedQuery<'a, P>
pub fn into_owned(self) -> StatementPreparedQueryOwned<'a, P>
Trait Implementations§
Source§impl<'s, P> Encode for StatementPreparedQuery<'s, P>where
P: AsParams,
impl<'s, P> Encode for StatementPreparedQuery<'s, P>where
P: AsParams,
Source§impl<'s, C, P> Execute<&C> for StatementPreparedQuery<'s, P>where
C: Query,
P: AsParams,
impl<'s, C, P> Execute<&C> for StatementPreparedQuery<'s, P>where
C: Query,
P: AsParams,
Source§type ExecuteOutput = ResultFuture<RowAffected>
type ExecuteOutput = ResultFuture<RowAffected>
outcome of execute.
used for single time database response: number of rows affected by execution for example.
Source§type QueryOutput = Ready<Result<GenericRowStream<&'s [Column], Typed>, Error>>
type QueryOutput = Ready<Result<GenericRowStream<&'s [Column], Typed>, Error>>
outcome of query.
used for repeated database response: database rows for example Read more
Source§fn execute(self, cli: &C) -> Self::ExecuteOutput
fn execute(self, cli: &C) -> Self::ExecuteOutput
define how a statement is executed with single time response
Source§fn query(self, cli: &C) -> Self::QueryOutput
fn query(self, cli: &C) -> Self::QueryOutput
define how a statement is queried with repeated response
Source§impl<'s, C, P> ExecuteBlocking<&C> for StatementPreparedQuery<'s, P>where
C: Query,
P: AsParams,
impl<'s, C, P> ExecuteBlocking<&C> for StatementPreparedQuery<'s, P>where
C: Query,
P: AsParams,
type ExecuteOutput = Result<u64, Error>
type QueryOutput = Result<GenericRowStream<&'s [Column], Typed>, Error>
fn execute_blocking(self, cli: &C) -> Result<u64, Error>
fn query_blocking(self, cli: &C) -> Self::QueryOutput
Auto Trait Implementations§
impl<'a, P> Freeze for StatementPreparedQuery<'a, P>where
P: Freeze,
impl<'a, P> RefUnwindSafe for StatementPreparedQuery<'a, P>where
P: RefUnwindSafe,
impl<'a, P> Send for StatementPreparedQuery<'a, P>where
P: Send,
impl<'a, P> Sync for StatementPreparedQuery<'a, P>where
P: Sync,
impl<'a, P> Unpin for StatementPreparedQuery<'a, P>where
P: Unpin,
impl<'a, P> UnwindSafe for StatementPreparedQuery<'a, P>where
P: UnwindSafe,
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