pub struct YdbStatement { /* private fields */ }
Available on crate feature
sqlx
only.Implementations§
Trait Implementations§
Source§impl Clone for YdbStatement
impl Clone for YdbStatement
Source§fn clone(&self) -> YdbStatement
fn clone(&self) -> YdbStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for YdbStatement
impl Debug for YdbStatement
Source§impl Statement<'_> for YdbStatement
impl Statement<'_> for YdbStatement
type Database = Ydb
Source§fn to_owned(&self) -> YdbStatement
fn to_owned(&self) -> YdbStatement
Creates an owned statement from this statement reference. This copies
the original SQL text.
Source§fn parameters(&self) -> Option<Either<&[YdbTypeInfo], usize>>
fn parameters(&self) -> Option<Either<&[YdbTypeInfo], usize>>
Get the expected parameters for this statement. Read more
Source§fn columns(&self) -> &[YdbColumn]
fn columns(&self) -> &[YdbColumn]
Get the columns expected to be returned by executing this statement.
fn query(&self) -> Query<'_, Self::Database, YdbArguments>
fn query_with<'s, A>(&'s self, arguments: A) -> Query<'s, Self::Database, A>where
A: IntoArguments<'s, Self::Database>,
fn query_as<O>( &self, ) -> QueryAs<'_, Self::Database, O, <Self::Database as HasArguments<'_>>::Arguments>
fn query_as_with<'s, O, A>( &'s self, arguments: A, ) -> QueryAs<'s, Self::Database, O, A>
fn query_scalar<O>( &self, ) -> QueryScalar<'_, Self::Database, O, <Self::Database as HasArguments<'_>>::Arguments>
fn query_scalar_with<'s, O, A>( &'s self, arguments: A, ) -> QueryScalar<'s, Self::Database, O, A>
Source§fn column<I>(&self, index: I) -> &<Self::Database as Database>::Columnwhere
I: ColumnIndex<Self>,
fn column<I>(&self, index: I) -> &<Self::Database as Database>::Columnwhere
I: ColumnIndex<Self>,
Gets the column information at
index
. Read moreSource§fn try_column<I>(
&self,
index: I,
) -> Result<&<Self::Database as Database>::Column, Error>where
I: ColumnIndex<Self>,
fn try_column<I>(
&self,
index: I,
) -> Result<&<Self::Database as Database>::Column, Error>where
I: ColumnIndex<Self>,
Gets the column information at
index
or None
if out of bounds.Auto Trait Implementations§
impl Freeze for YdbStatement
impl RefUnwindSafe for YdbStatement
impl Send for YdbStatement
impl Sync for YdbStatement
impl Unpin for YdbStatement
impl UnwindSafe for YdbStatement
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request