Trait diesel::query_builder::IntoBoxedClause
source · pub trait IntoBoxedClause<'a, DB> {
type BoxedClause;
// Required method
fn into_boxed(self) -> Self::BoxedClause;
}
Expand description
A trait used to construct type erased boxed variant of the current query node
Mainly useful for implementing third party backends
Required Associated Types§
sourcetype BoxedClause
type BoxedClause
Resulting type
Required Methods§
sourcefn into_boxed(self) -> Self::BoxedClause
fn into_boxed(self) -> Self::BoxedClause
Convert the given query node in it’s boxed representation