opensearch-dsl 0.3.1

Strongly typed OpenSearch DSL
Documentation
1
2
3
4
5
6
7
8
9
10
//! Performs
//! [analysis](https://www.elastic.co/guide/en/opensearch/reference/current/analysis.html)
//! on a text string and returns the resulting tokens.
//!
//! <https://www.elastic.co/guide/en/opensearch/reference/current/indices-analyze.html#analyze-api-query-params>

mod request;
mod response;

pub use self::{request::*, response::*};