Trait deuterium::ListExpression [] [src]

pub trait ListExpression<T>: UntypedExpression { }

Trait to indicate that value is a LIST expression with concrete type.

Implementations on Foreign Types

impl<T> ListExpression<T> for Vec<T> where
    T: UntypedExpression + ToPredicateValue + Clone + 'static, 
[src]

impl<T> ListExpression<Option<T>> for Vec<T> where
    T: UntypedExpression + ToPredicateValue + Clone + 'static, 
[src]

Implementors