[−][src]Trait diesel::query_dsl::methods::BoxedDsl
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, DB> BoxedDsl<'a, DB> for T where
T: Table + AsQuery,
T::Query: BoxedDsl<'a, DB>,
[src]
T: Table + AsQuery,
T::Query: BoxedDsl<'a, DB>,
type Output = <T::Query as BoxedDsl<'a, DB>>::Output
fn internal_into_boxed(self) -> Self::Output
[src]
impl<'a, T, U, Ret, DB> BoxedDsl<'a, DB> for DeleteStatement<T, U, Ret> where
U: Into<BoxedWhereClause<'a, DB>>,
[src]
U: Into<BoxedWhereClause<'a, DB>>,
type Output = BoxedDeleteStatement<'a, DB, T, Ret>
fn internal_into_boxed(self) -> Self::Output
[src]
impl<'a, T, U, V, Ret, DB> BoxedDsl<'a, DB> for UpdateStatement<T, U, V, Ret> where
U: Into<BoxedWhereClause<'a, DB>>,
[src]
U: Into<BoxedWhereClause<'a, DB>>,