Trait diesel::connection::DebugQuery

source ·
pub trait DebugQuery: Debug + Display { }
Expand description

A helper trait for opaque query representations which allows to get a Display and Debug representation of the underlying type without exposing type specific details

Implementors§

source§

impl DebugQuery for StrQueryHelper<'_>

source§

impl<T, DB> DebugQuery for DebugQuery<'_, T, DB>
where Self: Debug + Display,