pub enum SecValue {
Keyword(String),
Numeric(f64),
}Expand description
A concrete value to match against a filterable field.
Variants§
Keyword(String)
An exact-match string, for a FieldType::Keyword field.
Numeric(f64)
A number, for a FieldType::Numeric field.
Trait Implementations§
impl StructuralPartialEq for SecValue
Auto Trait Implementations§
impl Freeze for SecValue
impl RefUnwindSafe for SecValue
impl Send for SecValue
impl Sync for SecValue
impl Unpin for SecValue
impl UnsafeUnpin for SecValue
impl UnwindSafe for SecValue
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