Struct rusoto_cloudsearch::AnalysisScheme[][src]

pub struct AnalysisScheme {
    pub analysis_options: Option<AnalysisOptions>,
    pub analysis_scheme_language: String,
    pub analysis_scheme_name: String,
}

Configuration information for an analysis scheme. Each analysis scheme has a unique name and specifies the language of the text to be processed. The following options can be configured for an analysis scheme: Synonyms, Stopwords, StemmingDictionary, JapaneseTokenizationDictionary and AlgorithmicStemming.

Fields

Trait Implementations

impl Default for AnalysisScheme
[src]

Returns the "default value" for a type. Read more

impl Debug for AnalysisScheme
[src]

Formats the value using the given formatter. Read more

impl Clone for AnalysisScheme
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AnalysisScheme
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations