pub struct SqlStr(/* private fields */);Expand description
A SQL string that is ready to execute on a database connection.
This is essentially Cow<'static, str> but which can be constructed from additional types
without copying.
See SqlSafeStr for details.
Implementations§
Trait Implementations§
Source§impl SqlSafeStr for SqlStr
impl SqlSafeStr for SqlStr
Source§fn into_sql_str(self) -> SqlStr
fn into_sql_str(self) -> SqlStr
Convert
self to a SqlStr.impl Eq for SqlStr
Auto Trait Implementations§
impl Freeze for SqlStr
impl RefUnwindSafe for SqlStr
impl Send for SqlStr
impl Sync for SqlStr
impl Unpin for SqlStr
impl UnwindSafe for SqlStr
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<DB, T> Execute<'_, DB> for T
impl<DB, T> Execute<'_, DB> for T
Source§fn statement(&self) -> Option<&<DB as Database>::Statement>
fn statement(&self) -> Option<&<DB as Database>::Statement>
Gets the previously cached statement, if available.
Source§fn take_arguments(
&mut self,
) -> Result<Option<<DB as Database>::Arguments>, Box<dyn Error + Send + Sync>>
fn take_arguments( &mut self, ) -> Result<Option<<DB as Database>::Arguments>, Box<dyn Error + Send + Sync>>
Returns the arguments to be bound against the query string. Read more
Source§fn persistent(&self) -> bool
fn persistent(&self) -> bool
Returns
true if the statement should be cached.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