pub struct MssqlStatement { /* private fields */ }Expand description
SQL Server prepared statement metadata skeleton.
Implementations§
Source§impl MssqlStatement
impl MssqlStatement
Sourcepub fn new(sql: SqlStr, columns: Vec<MssqlColumn>) -> Self
pub fn new(sql: SqlStr, columns: Vec<MssqlColumn>) -> Self
Creates statement metadata for tests and future prepare support.
Trait Implementations§
Source§impl Clone for MssqlStatement
impl Clone for MssqlStatement
Source§fn clone(&self) -> MssqlStatement
fn clone(&self) -> MssqlStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ColumnIndex<MssqlStatement> for &str
impl ColumnIndex<MssqlStatement> for &str
Source§fn index(&self, statement: &MssqlStatement) -> Result<usize, Error>
fn index(&self, statement: &MssqlStatement) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds, or,
ColumnNotFound.Source§impl ColumnIndex<MssqlStatement> for usize
impl ColumnIndex<MssqlStatement> for usize
Source§fn index(&self, statement: &MssqlStatement) -> Result<usize, Error>
fn index(&self, statement: &MssqlStatement) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds, or,
ColumnNotFound.Source§impl Debug for MssqlStatement
impl Debug for MssqlStatement
Source§impl Statement for MssqlStatement
impl Statement for MssqlStatement
type Database = Mssql
Source§fn parameters(&self) -> Option<Either<&[MssqlTypeInfo], usize>>
fn parameters(&self) -> Option<Either<&[MssqlTypeInfo], usize>>
Get the expected parameters for this statement. Read more
Source§fn columns(&self) -> &[MssqlColumn]
fn columns(&self) -> &[MssqlColumn]
Get the columns expected to be returned by executing this statement.
fn query(&self) -> Query<'_, Self::Database, MssqlArguments>
fn query_with<A>(&self, arguments: A) -> Query<'_, Self::Database, A>where
A: IntoArguments<Self::Database>,
fn query_as<O>( &self, ) -> QueryAs<'_, Self::Database, O, <Self::Database as Database>::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 Database>::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 Freeze for MssqlStatement
impl RefUnwindSafe for MssqlStatement
impl Send for MssqlStatement
impl Sync for MssqlStatement
impl Unpin for MssqlStatement
impl UnsafeUnpin for MssqlStatement
impl UnwindSafe for MssqlStatement
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 more