Function diesel::pg::expression::dsl::any[][src]

pub fn any<ST, T>(vals: T) -> Any<T::Expression> where
    T: AsArrayExpression<ST>, 
Expand description

Creates a PostgreSQL ANY expression.

As with most bare functions, this is not exported by default. You can import it specifically from diesel::expression::any, or glob import diesel::dsl::*

Example

let sean = (1, "Sean".to_string());
let jim = (3, "Jim".to_string());
let data = users.filter(name.eq(any(vec!["Sean", "Jim"])));
assert_eq!(Ok(vec![sean, jim]), data.load(&connection));