[][src]Trait diesel::query_dsl::methods::BoxedDsl

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

Loading content...

Required methods

fn internal_into_boxed(self) -> Self::Output

See the trait documentation.

Loading content...

Implementors

impl<'a, T, DB> BoxedDsl<'a, DB> for T where
    T: Table + AsQuery,
    T::Query: BoxedDsl<'a, DB>, 
[src]

type Output = <T::Query as BoxedDsl<'a, DB>>::Output

impl<'a, T, U, Ret, DB> BoxedDsl<'a, DB> for DeleteStatement<T, U, Ret> where
    U: Into<BoxedWhereClause<'a, DB>>, 
[src]

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>>, 
[src]

type Output = BoxedUpdateStatement<'a, DB, T, V, Ret>

Loading content...