[][src]Trait codd::expression::IntoExpression

pub trait IntoExpression<T, E> where
    T: Tuple,
    E: Expression<T>, 
{ fn into_expression(self) -> E; }

Is the trait of types that can be turned into an Expression.

Required methods

fn into_expression(self) -> E

Consumes the receiver and returns an expression.

Loading content...

Implementors

impl<T, E> IntoExpression<T, E> for Builder<T, E> where
    T: Tuple,
    E: Expression<T>, 
[src]

impl<T, E> IntoExpression<T, E> for E where
    T: Tuple,
    E: Expression<T>, 
[src]

Loading content...