Trait deuterium::ToInRangePredicate [] [src]

pub trait ToInRangePredicate<T> {
    fn in_range<B1, B2>(&self, from: B1, to: B2) -> SharedPredicate
    where
        B1: ToExpression<T> + ToPredicateValue + Clone + 'static,
        B2: ToExpression<T> + ToPredicateValue + Clone + 'static
;
fn in_range_exclude_left<B1, B2>(&self, from: B1, to: B2) -> SharedPredicate
    where
        B1: ToExpression<T> + ToPredicateValue + Clone + 'static,
        B2: ToExpression<T> + ToPredicateValue + Clone + 'static
;
fn in_range_exclude_right<B1, B2>(
        &self,
        from: B1,
        to: B2
    ) -> SharedPredicate
    where
        B1: ToExpression<T> + ToPredicateValue + Clone + 'static,
        B2: ToExpression<T> + ToPredicateValue + Clone + 'static
;
fn in_range_exclude<B1, B2>(&self, from: B1, to: B2) -> SharedPredicate
    where
        B1: ToExpression<T> + ToPredicateValue + Clone + 'static,
        B2: ToExpression<T> + ToPredicateValue + Clone + 'static
; }

Required Methods

Implementors