Introduce codecs for facet types (string, f64, u64, i64)

This commit is contained in:
Clément Renault 2020-11-11 15:48:24 +01:00
parent b4951c058b
commit e0058c1125
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
11 changed files with 280 additions and 0 deletions

4
src/facet/mod.rs Normal file
View file

@ -0,0 +1,4 @@
mod facet_type;
pub mod value_encoding;
pub use self::facet_type::FacetType;