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§
source§impl<V: Clone> Clone for ComparableFilter<V>
impl<V: Clone> Clone for ComparableFilter<V>
source§fn clone(&self) -> ComparableFilter<V>
fn clone(&self) -> ComparableFilter<V>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<V: Debug> Debug for ComparableFilter<V>
impl<V: Debug> Debug for ComparableFilter<V>
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more