[][src]Enum libstripe::util::RangeQuery

pub enum RangeQuery {
    Exact(i64),
    Bounds(RangeBounds),
}

Variants

Exact(i64)Bounds(RangeBounds)

Methods

impl RangeQuery[src]

pub fn eq(value: i64) -> RangeQuery[src]

Filter results to exactly match a given value

pub fn gt(value: i64) -> RangeQuery[src]

Filter results to be after a given value

pub fn gte(value: i64) -> RangeQuery[src]

Filter results to be after or equal to a given value

pub fn lt(value: i64) -> RangeQuery[src]

Filter results to be before to a given value

pub fn lte(value: i64) -> RangeQuery[src]

Filter results to be before or equal to a given value

Trait Implementations

impl PartialEq<RangeQuery> for RangeQuery[src]

impl Debug for RangeQuery[src]

impl Serialize for RangeQuery[src]

Auto Trait Implementations

impl Send for RangeQuery

impl Sync for RangeQuery

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err