Elasticsearch Response Iterators

A crate to handle parsing and handling Elasticsearch search results which provides convenient iterators to step through the results returned. It is designed to work with elastic-reqwest.

## Usage

Cargo.toml [dependencies] elastic_reqwest = "*" elastic_requests = "*" elastic_responses = "*"

Query your Elasticsearch Cluster, then iterate through the results

``rust // Send a request (omitted, seesamples/basic`, and read the response. let mut res = client.elasticreq(&params, SearchRequest::forindex("_all", body)).unwrap();

//Parse body to JSON as an elasticresponses::Response object let bodyas_json: EsResponse = res.json().unwrap();

//Use hits() or aggs() iterators //Hits for i in bodyasjson.hits() { println!("{:?}",i); }

//Agregations for i in bodyasjson.aggs() { println!("{:?}",i); } ```

## License

Licensed under either of