Enum redmine_api::api::issues::ComparableFilter
source · [−]pub enum ComparableFilter<V> {
ExactMatch(V),
Range(V, V),
LessThan(V),
LessThanOrEqual(V),
GreaterThan(V),
GreaterThanOrEqual(V),
}
Expand description
Filter for a comparable filter (those you can use ranges, less, greater,…) on
Variants
ExactMatch(V)
an exact match
Range(V, V)
a range match
LessThan(V)
we only want values less than the parameter
LessThanOrEqual(V)
we only want values less than or equal to the parameter
GreaterThan(V)
we only want values greater than the parameter
GreaterThanOrEqual(V)
we only want values greater than or equal to the parameter
Trait Implementations
Auto Trait Implementations
impl<V> RefUnwindSafe for ComparableFilter<V> where
V: RefUnwindSafe,
impl<V> Send for ComparableFilter<V> where
V: Send,
impl<V> Sync for ComparableFilter<V> where
V: Sync,
impl<V> Unpin for ComparableFilter<V> where
V: Unpin,
impl<V> UnwindSafe for ComparableFilter<V> where
V: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more