opensearch-dsl 0.3.1

Strongly typed OpenSearch DSL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Module containing helpers and util functions that are not specific to any
//! DSL

mod assert_serialize;
// Join text with a pipe
mod join_with_pipe;
// manage key values pairs
mod key_value_pair;
// should skip serialization
mod should_skip;

#[cfg(test)]
pub(crate) use self::assert_serialize::*;

pub use self::{join_with_pipe::*, key_value_pair::*, should_skip::*};