elastic_types 0.20.10

A strongly-typed implementation of Elasticsearch core types and Mapping API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use elastic_types;
use elastic_types::prelude::*;
use boolean_fixtures::*;

use test::Bencher;

#[bench]
fn mapping(b: &mut Bencher) {
    b.iter(|| {
        elastic_types::derive::standalone_field_ser(MyBooleanMapping).unwrap()
    });
}