Enum sqlparser::ast::SearchModifier
source · pub enum SearchModifier {
InNaturalLanguageMode,
InNaturalLanguageModeWithQueryExpansion,
InBooleanMode,
WithQueryExpansion,
}
Expand description
Fulltext search modifiers (1).
Variants§
InNaturalLanguageMode
IN NATURAL LANGUAGE MODE
.
InNaturalLanguageModeWithQueryExpansion
IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION
.
InBooleanMode
IN BOOLEAN MODE
.
WithQueryExpansion
WITH QUERY EXPANSION
.
Trait Implementations§
source§impl Clone for SearchModifier
impl Clone for SearchModifier
source§fn clone(&self) -> SearchModifier
fn clone(&self) -> SearchModifier
Returns a copy 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 SearchModifier
impl Debug for SearchModifier
source§impl<'de> Deserialize<'de> for SearchModifier
impl<'de> Deserialize<'de> for SearchModifier
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 Display for SearchModifier
impl Display for SearchModifier
source§impl Hash for SearchModifier
impl Hash for SearchModifier
source§impl Ord for SearchModifier
impl Ord for SearchModifier
source§fn cmp(&self, other: &SearchModifier) -> Ordering
fn cmp(&self, other: &SearchModifier) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<SearchModifier> for SearchModifier
impl PartialEq<SearchModifier> for SearchModifier
source§fn eq(&self, other: &SearchModifier) -> bool
fn eq(&self, other: &SearchModifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<SearchModifier> for SearchModifier
impl PartialOrd<SearchModifier> for SearchModifier
source§fn partial_cmp(&self, other: &SearchModifier) -> Option<Ordering>
fn partial_cmp(&self, other: &SearchModifier) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more