opensearch_client/common/analysis/
stop_analyzer.rs1use crate::common;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct StopAnalyzer {
16 #[serde(rename = "stopwords", default, skip_serializing_if = "Option::is_none")]
17 pub stopwords: Option<common::analysis::StopWords>,
18 #[serde(rename = "version", default, skip_serializing_if = "Option::is_none")]
19 pub version: Option<String>,
20 #[serde(rename = "type")]
21 pub r#type: String,
22 #[serde(
23 rename = "stopwords_path",
24 default,
25 skip_serializing_if = "Option::is_none"
26 )]
27 pub stopwords_path: Option<String>,
28}
29
30impl StopAnalyzer {
31 pub fn new(r#type: String) -> StopAnalyzer {
32 StopAnalyzer {
33 stopwords: None,
34 version: None,
35 r#type,
36 stopwords_path: None,
37 }
38 }
39}