Struct sqlx_mysql::MySqlStatement
source · pub struct MySqlStatement<'q> { /* private fields */ }
Trait Implementations§
source§impl<'q> Clone for MySqlStatement<'q>
impl<'q> Clone for MySqlStatement<'q>
source§fn clone(&self) -> MySqlStatement<'q>
fn clone(&self) -> MySqlStatement<'q>
Returns a copy 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 ColumnIndex<MySqlStatement<'_>> for &str
impl ColumnIndex<MySqlStatement<'_>> for &str
source§fn index(&self, statement: &MySqlStatement<'_>) -> Result<usize, Error>
fn index(&self, statement: &MySqlStatement<'_>) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds
, or,
ColumnNotFound
.source§impl ColumnIndex<MySqlStatement<'_>> for usize
impl ColumnIndex<MySqlStatement<'_>> for usize
source§fn index(&self, statement: &MySqlStatement<'_>) -> Result<usize, Error>
fn index(&self, statement: &MySqlStatement<'_>) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds
, or,
ColumnNotFound
.source§impl<'q> Debug for MySqlStatement<'q>
impl<'q> Debug for MySqlStatement<'q>
source§impl<'q> Statement<'q> for MySqlStatement<'q>
impl<'q> Statement<'q> for MySqlStatement<'q>
type Database = MySql
source§fn to_owned(&self) -> MySqlStatement<'static>
fn to_owned(&self) -> MySqlStatement<'static>
Creates an owned statement from this statement reference. This copies
the original SQL text.
source§fn parameters(&self) -> Option<Either<&[MySqlTypeInfo], usize>>
fn parameters(&self) -> Option<Either<&[MySqlTypeInfo], usize>>
Get the expected parameters for this statement. Read more
source§fn columns(&self) -> &[MySqlColumn]
fn columns(&self) -> &[MySqlColumn]
Get the columns expected to be returned by executing this statement.
fn query(&self) -> Query<'_, Self::Database, MySqlArguments>
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 a ColumnIndexOutOfBounds
error if out of bounds.Auto Trait Implementations§
impl<'q> Freeze for MySqlStatement<'q>
impl<'q> RefUnwindSafe for MySqlStatement<'q>
impl<'q> Send for MySqlStatement<'q>
impl<'q> Sync for MySqlStatement<'q>
impl<'q> Unpin for MySqlStatement<'q>
impl<'q> UnwindSafe for MySqlStatement<'q>
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