pub struct BooleanQuery {
pub must: Vec<FtsQuery>,
pub must_not: Vec<FtsQuery>,
pub should: Vec<FtsQuery>,
}
Expand description
BooleanQuery : Boolean query with must, should, and must_not clauses
Fields§
§must: Vec<FtsQuery>
Queries that must match (AND)
must_not: Vec<FtsQuery>
Queries that must not match (NOT)
should: Vec<FtsQuery>
Queries that should match (OR)
Implementations§
Trait Implementations§
Source§impl Clone for BooleanQuery
impl Clone for BooleanQuery
Source§fn clone(&self) -> BooleanQuery
fn clone(&self) -> BooleanQuery
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 BooleanQuery
impl Debug for BooleanQuery
Source§impl Default for BooleanQuery
impl Default for BooleanQuery
Source§fn default() -> BooleanQuery
fn default() -> BooleanQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BooleanQuery
impl<'de> Deserialize<'de> for BooleanQuery
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 BooleanQuery
impl PartialEq for BooleanQuery
Source§impl Serialize for BooleanQuery
impl Serialize for BooleanQuery
impl StructuralPartialEq for BooleanQuery
Auto Trait Implementations§
impl Freeze for BooleanQuery
impl RefUnwindSafe for BooleanQuery
impl Send for BooleanQuery
impl Sync for BooleanQuery
impl Unpin for BooleanQuery
impl UnwindSafe for BooleanQuery
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