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ยง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