[−][src]Struct diesel::query_builder::DebugQuery
A struct that implements fmt::Display
and fmt::Debug
to show the SQL
representation of a query.
The Display
implementation will be the exact query sent to the server,
plus a comment with the values of the bind parameters. The Debug
implementation is more structured, and able to be pretty printed.
See debug_query
for usage examples.
Trait Implementations
impl<'a, T, DB> Display for DebugQuery<'a, T, DB> where
DB: Backend,
DB::QueryBuilder: Default,
T: QueryFragment<DB>,
[src]
DB: Backend,
DB::QueryBuilder: Default,
T: QueryFragment<DB>,
impl<'a, T, DB> Debug for DebugQuery<'a, T, DB> where
DB: Backend,
DB::QueryBuilder: Default,
T: QueryFragment<DB>,
[src]
DB: Backend,
DB::QueryBuilder: Default,
T: QueryFragment<DB>,
Auto Trait Implementations
impl<'a, T, DB> Unpin for DebugQuery<'a, T, DB> where
DB: Unpin,
DB: Unpin,
impl<'a, T, DB> Sync for DebugQuery<'a, T, DB> where
DB: Sync,
T: Sync,
DB: Sync,
T: Sync,
impl<'a, T, DB> Send for DebugQuery<'a, T, DB> where
DB: Send,
T: Sync,
DB: Send,
T: Sync,
impl<'a, T, DB> UnwindSafe for DebugQuery<'a, T, DB> where
DB: UnwindSafe,
T: RefUnwindSafe,
DB: UnwindSafe,
T: RefUnwindSafe,
impl<'a, T, DB> RefUnwindSafe for DebugQuery<'a, T, DB> where
DB: RefUnwindSafe,
T: RefUnwindSafe,
DB: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> IntoSql for T
[src]
fn into_sql<T>(self) -> AsExprOf<Self, T> where
Self: AsExpression<T> + Sized,
[src]
Self: AsExpression<T> + Sized,
Convert self
to an expression for Diesel's query builder. Read more
fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T> where
&'a Self: AsExpression<T>,
[src]
&'a Self: AsExpression<T>,
Convert &self
to an expression for Diesel's query builder. Read more
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,