pub enum DateCondition {
}
Variants§
After(DateTime<Utc>)
Before(DateTime<Utc>)
Equals(DateTime<Utc>)
IsEmpty
IsNotEmpty
NextMonth
NextWeek
NextYear
OnOrAfter(DateTime<Utc>)
OnOrBefore(DateTime<Utc>)
PastMonth
PastWeek
PastYear
ThisWeek
Trait Implementations§
Source§impl Clone for DateCondition
impl Clone for DateCondition
Source§fn clone(&self) -> DateCondition
fn clone(&self) -> DateCondition
Returns a duplicate 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 Debug for DateCondition
impl Debug for DateCondition
Source§impl PartialEq for DateCondition
impl PartialEq for DateCondition
Source§impl Serialize for DateCondition
impl Serialize for DateCondition
impl Eq for DateCondition
impl StructuralPartialEq for DateCondition
Auto Trait Implementations§
impl Freeze for DateCondition
impl RefUnwindSafe for DateCondition
impl Send for DateCondition
impl Sync for DateCondition
impl Unpin for DateCondition
impl UnwindSafe for DateCondition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.