pub trait IntoBoxedClause<'a, DB> {
    type BoxedClause;

    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§

Resulting type

Required Methods§

Convert the given query node in it’s boxed representation

Implementors§