Trait block_tools::db::use_diesel::query_dsl::methods::BoxedDsl[][src]

pub trait BoxedDsl<'a, DB> {
    type Output;
    pub 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[src]

The return type of internal_into_boxed

Loading content...

Required methods

pub fn internal_into_boxed(self) -> Self::Output[src]

See the trait documentation.

Loading content...

Implementors

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

type Output = <<T as AsQuery>::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 = DeleteStatement<T, BoxedWhereClause<'a, DB>, 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 = UpdateStatement<T, BoxedWhereClause<'a, DB>, V, Ret>

Loading content...