pub struct EsBoolQuery {
pub must: Option<Vec<EsQuery>>,
pub should: Option<Vec<EsQuery>>,
pub filter: Option<Vec<EsQuery>>,
pub must_not: Option<Vec<EsQuery>>,
pub minimum_should_match: Option<usize>,
}Fields§
§must: Option<Vec<EsQuery>>§should: Option<Vec<EsQuery>>§filter: Option<Vec<EsQuery>>§must_not: Option<Vec<EsQuery>>§minimum_should_match: Option<usize>Trait Implementations§
Source§impl Clone for EsBoolQuery
impl Clone for EsBoolQuery
Source§fn clone(&self) -> EsBoolQuery
fn clone(&self) -> EsBoolQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EsBoolQuery
impl Debug for EsBoolQuery
Source§impl<'de> Deserialize<'de> for EsBoolQuery
impl<'de> Deserialize<'de> for EsBoolQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EsBoolQuery
impl PartialEq for EsBoolQuery
Source§impl Serialize for EsBoolQuery
impl Serialize for EsBoolQuery
impl StructuralPartialEq for EsBoolQuery
Auto Trait Implementations§
impl Freeze for EsBoolQuery
impl RefUnwindSafe for EsBoolQuery
impl Send for EsBoolQuery
impl Sync for EsBoolQuery
impl Unpin for EsBoolQuery
impl UnsafeUnpin for EsBoolQuery
impl UnwindSafe for EsBoolQuery
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