pub enum Analysis {
    BuiltInAnalyzer(String),
    CustomAnalyzer(CustomAnalyzer),
    BuiltInNormalizer(String),
    CustomNormalizer(CustomNormalizer),
    Field(String),
}
Expand description

Analysis types

Variants§

§

BuiltInAnalyzer(String)

The name of the analyzer that should be applied to the provided text. This could be a built-in analyzer, or an analyzer that’s been configured in the index. If this parameter is not specified, the analyze API uses the analyzer defined in the field’s mapping. If no field is specified, the analyze API uses the default analyzer for the index. If no index is specified, or the index does not have a default analyzer, the analyze API uses the standard analyzer.

https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-analyzers.html

§

CustomAnalyzer(CustomAnalyzer)

Custom analyzer that should be applied to the provided text.

§

BuiltInNormalizer(String)

The name of built-in normalizer to use to convert text into a single token.

https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-normalizers.html

§

CustomNormalizer(CustomNormalizer)

The custom normalizer to use to convert text into a single token.

§

Field(String)

Field used to derive the analyzer. To use this parameter, you must specify an index. If specified, the analyzer parameter overrides this value. If no field is specified, the analyze API uses the default analyzer for the index. If no index is specified or the index does not have a default analyzer, the analyze API uses the standard analyzer.

Implementations§

Creates an instance of Analysis::Field

Creates an instance of Analysis::BuiltInAnalyzer

Creates an instance of Analysis::BuiltInNormalizer

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.