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
sourceimpl<V: Clone> Clone for ComparableFilter<V>
impl<V: Clone> Clone for ComparableFilter<V>
sourcefn clone(&self) -> ComparableFilter<V>
fn clone(&self) -> ComparableFilter<V>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<V: Debug> Debug for ComparableFilter<V>
impl<V: Debug> Debug for ComparableFilter<V>
sourceimpl<V> Display for ComparableFilter<V> where
V: ComparableFilterValue,
impl<V> Display for ComparableFilter<V> where
V: ComparableFilterValue,
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more