[][src]Trait diesel::query_dsl::methods::OrFilterDsl

pub trait OrFilterDsl<Predicate> {
    type Output;
    fn or_filter(self, predicate: Predicate) -> Self::Output;
}

The or_filter method

This trait should not be relied on directly by most apps. Its behavior is provided by QueryDsl. However, you may need a where clause on this trait to call or_filter from generic code.

Associated Types

type Output

The type returned by .filter.

Loading content...

Required methods

fn or_filter(self, predicate: Predicate) -> Self::Output

See the trait documentation.

Loading content...

Implementors

impl<T, Predicate> OrFilterDsl<Predicate> for T where
    T: Table,
    T::Query: OrFilterDsl<Predicate>, 
[src]

type Output = OrFilter<T::Query, Predicate>

Loading content...