actix-elastic 1.0.7

elasticsearch 7.x actix actor
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod bulk;
pub mod cat;
pub mod common;
pub mod scroll;
pub mod search;

pub use bulk::{BulkResponse, ItemError};
pub use cat::CatIndicesResponse;
#[cfg(not(feature = "v5"))]
pub use common::HitsTotal;
pub use common::{Hit, HitsWrapper, Shards};
pub use scroll::ScrollResponse;
pub use search::SearchResponse;