elasticsearch_dsl/analyze/
mod.rs

1//! Performs
2//! [analysis](https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis.html)
3//! on a text string and returns the resulting tokens.
4//!
5//! <https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-analyze.html#analyze-api-query-params>
6
7mod request;
8mod response;
9
10pub use self::request::*;
11pub use self::response::*;