Struct StatementUnnamedBind

Source
pub struct StatementUnnamedBind<'a, P> { /* private fields */ }
Expand description

an unnamed statement with it’s query param binding

Trait Implementations§

Source§

impl<'c, C, P> Execute<'c, C> for StatementUnnamedBind<'_, P>
where C: Prepare + 'c, P: AsParams,

Source§

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<RowStreamGuarded<'c, C>, Error>>

outcome of query. used for repeated database response: database rows for example Read more
Source§

fn execute(self, cli: &C) -> Self::ExecuteOutput

define how a statement is executed with single time response
Source§

fn query(self, cli: &'c C) -> Self::QueryOutput

define how a statement is queried with repeated response
Source§

impl<'c, C, P> ExecuteBlocking<'c, C> for StatementUnnamedBind<'_, P>
where C: Prepare + 'c, P: AsParams,

Source§

type ExecuteOutput = Result<u64, Error>

Source§

type QueryOutput = Result<RowStreamGuarded<'c, C>, Error>

Source§

fn execute_blocking(self, cli: &C) -> Result<u64, Error>

Source§

fn query_blocking(self, cli: &'c C) -> Self::QueryOutput

Auto Trait Implementations§

§

impl<'a, P> Freeze for StatementUnnamedBind<'a, P>
where P: Freeze,

§

impl<'a, P> RefUnwindSafe for StatementUnnamedBind<'a, P>
where P: RefUnwindSafe,

§

impl<'a, P> Send for StatementUnnamedBind<'a, P>
where P: Send,

§

impl<'a, P> Sync for StatementUnnamedBind<'a, P>
where P: Sync,

§

impl<'a, P> Unpin for StatementUnnamedBind<'a, P>
where P: Unpin,

§

impl<'a, P> UnwindSafe for StatementUnnamedBind<'a, P>
where P: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V