[][src]Trait diesel::expression_methods::PgTextExpressionMethods

pub trait PgTextExpressionMethods: Expression + Sized {
    fn ilike<T: AsExpression<Text>>(
        self,
        other: T
    ) -> ILike<Self, T::Expression> { ... }
fn not_ilike<T: AsExpression<Text>>(
        self,
        other: T
    ) -> NotILike<Self, T::Expression> { ... } }

PostgreSQL specific methods present on text expressions.

Provided methods

fn ilike<T: AsExpression<Text>>(self, other: T) -> ILike<Self, T::Expression>

Creates a PostgreSQL ILIKE expression

Example

let starts_with_s = animals
    .select(species)
    .filter(name.ilike("s%").or(species.ilike("s%")))
    .get_results::<String>(&connection)?;
assert_eq!(vec!["spider"], starts_with_s);

fn not_ilike<T: AsExpression<Text>>(
    self,
    other: T
) -> NotILike<Self, T::Expression>

Creates a PostgreSQL NOT ILIKE expression

Example

let doesnt_start_with_s = animals
    .select(species)
    .filter(name.not_ilike("s%").and(species.not_ilike("s%")))
    .get_results::<String>(&connection)?;
assert_eq!(vec!["dog"], doesnt_start_with_s);
Loading content...

Implementors

impl<T> PgTextExpressionMethods for T where
    T: Expression,
    T::SqlType: TextOrNullableText, 
[src]

Loading content...