Trait diesel_full_text_search::TsVectorExtensions [] [src]

pub trait TsVectorExtensions: Expression<SqlType=TsVector> + Sized {
    fn matches<T: AsExpression<TsQuery>>(self, other: T) -> Matches<Self, T::Expression> { ... }
    fn concat<T: AsExpression<TsVector>>(self, other: T) -> Concat<Self, T::Expression> { ... }
}

Provided Methods

fn matches<T: AsExpression<TsQuery>>(self, other: T) -> Matches<Self, T::Expression>

fn concat<T: AsExpression<TsVector>>(self, other: T) -> Concat<Self, T::Expression>

Implementors