pub enum MetadataFilterCondition {
GreaterThan(f64),
GreaterThanOrEqualTo(f64),
LessThan(f64),
LessThanOrEqualTo(f64),
After(Timestamp),
AtOrAfter(Timestamp),
Before(Timestamp),
AtOrBefore(Timestamp),
EqualTo(MetadataFieldValue),
IsNull(True),
}Variants§
GreaterThan(f64)
GreaterThanOrEqualTo(f64)
LessThan(f64)
LessThanOrEqualTo(f64)
After(Timestamp)
AtOrAfter(Timestamp)
Before(Timestamp)
AtOrBefore(Timestamp)
EqualTo(MetadataFieldValue)
IsNull(True)
Trait Implementations§
Source§impl Clone for MetadataFilterCondition
impl Clone for MetadataFilterCondition
Source§fn clone(&self) -> MetadataFilterCondition
fn clone(&self) -> MetadataFilterCondition
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 MetadataFilterCondition
impl Debug for MetadataFilterCondition
Auto Trait Implementations§
impl Freeze for MetadataFilterCondition
impl RefUnwindSafe for MetadataFilterCondition
impl Send for MetadataFilterCondition
impl Sync for MetadataFilterCondition
impl Unpin for MetadataFilterCondition
impl UnwindSafe for MetadataFilterCondition
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