Trait diesel::query_dsl::methods::BoxedDsl [−][src]
pub trait BoxedDsl<'a, DB> { type Output; fn internal_into_boxed(self) -> Self::Output; }
The into_boxed
method
This trait should not be relied on directly by most apps. Its behavior is
provided by QueryDsl
. However, you may need a where clause on this trait
to call into_boxed
from generic code.
Associated Types
type Output
The return type of internal_into_boxed
Required Methods
fn internal_into_boxed(self) -> Self::Output
See the trait documentation.
Implementors
impl<'a, T, U, Ret, DB> BoxedDsl<'a, DB> for DeleteStatement<T, U, Ret> where
U: Into<BoxedWhereClause<'a, DB>>, type Output = BoxedDeleteStatement<'a, DB, T, Ret>;impl<'a, T, U, V, Ret, DB> BoxedDsl<'a, DB> for UpdateStatement<T, U, V, Ret> where
U: Into<BoxedWhereClause<'a, DB>>, type Output = BoxedUpdateStatement<'a, DB, T, V, Ret>;impl<'a, T, DB> BoxedDsl<'a, DB> for T where
T: Table + AsQuery,
T::Query: BoxedDsl<'a, DB>, type Output = <T::Query as BoxedDsl<'a, DB>>::Output;