Struct diesel::query_builder::DebugQuery [] [src]

pub struct DebugQuery<'a, T: 'a, DB> { /* fields omitted */ }

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.

Trait Implementations

impl<'a, T, DB> Display for DebugQuery<'a, T, DB> where
    DB: Backend,
    DB::QueryBuilder: Default,
    T: QueryFragment<DB>, 
[src]

Formats the value using the given formatter. Read more

impl<'a, T, DB> Debug for DebugQuery<'a, T, DB> where
    DB: Backend,
    DB::QueryBuilder: Default,
    T: QueryFragment<DB>, 
[src]

Formats the value using the given formatter.