Struct StatementGuarded

Source
pub struct StatementGuarded<'a, C>
where C: Query,
{ /* private fields */ }
Expand description

a statement guard contains a prepared postgres statement. the guard can be dereferenced or borrowed as Statement which can be used for query apis.

the guard would cancel it’s statement when dropped. generic C type must be a client type impl Query trait to instruct the cancellation.

Implementations§

Source§

impl<C> StatementGuarded<'_, C>
where C: Query,

Source

pub fn leak(self) -> Statement

leak the statement and it will lose automatic management DOES NOT cause memory leak

Methods from Deref<Target = Statement>§

Source

pub fn bind<P>(&self, params: P) -> StatementQuery<'_, P>
where P: AsParams,

bind self to typed value parameters where they are encoded into a valid sql query in binary format

§Examples
// prepare a statement with typed parameters.
let stmt = Statement::named("SELECT * FROM users WHERE id = $1 AND age = $2", &[Type::INT4, Type::INT4])
    .execute(&cli).await?;
// bind statement to typed value parameters and start query
let row_stream = stmt.bind([9527_i32, 18]).query(&cli).await?;
Source

pub fn bind_dyn<'p, 't>( &self, params: &'p [&'t (dyn ToSql + Sync)], ) -> StatementQuery<'_, impl ExactSizeIterator<Item = &'t (dyn ToSql + Sync)> + 'p>

Statement::bind for dynamic typed parameters

§Examples
// bind to a dynamic typed slice where items have it's own concrete type.
let bind = statement.bind_dyn(&[&9527i32, &"nobody"]);
Source

pub fn params(&self) -> &[Type]

Returns the expected types of the statement’s parameters.

Source

pub fn columns(&self) -> &[Column]

Returns information about the columns returned when the statement is queried.

Trait Implementations§

Source§

impl<C> AsRef<Statement> for StatementGuarded<'_, C>
where C: Query,

Source§

fn as_ref(&self) -> &Statement

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<C> Deref for StatementGuarded<'_, C>
where C: Query,

Source§

type Target = Statement

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<C> Drop for StatementGuarded<'_, C>
where C: Query,

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a, C> Freeze for StatementGuarded<'a, C>

§

impl<'a, C> RefUnwindSafe for StatementGuarded<'a, C>
where C: RefUnwindSafe,

§

impl<'a, C> Send for StatementGuarded<'a, C>
where C: Sync,

§

impl<'a, C> Sync for StatementGuarded<'a, C>
where C: Sync,

§

impl<'a, C> Unpin for StatementGuarded<'a, C>

§

impl<'a, C> UnwindSafe for StatementGuarded<'a, C>
where C: RefUnwindSafe,

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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