noxu-bind 3.1.0

Serialization bindings for Noxu DB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Tuple binding subsystem for encoding Rust primitive types into sortable byte arrays.
//!
//! This module provides the primary binding mechanism for database keys. Values are
//! encoded in a way that their byte representation sorts in the same order as the
//! original values when compared lexicographically.
//!

pub mod primitive_bindings;
pub mod sort_key;
pub mod tuple_binding;
pub mod tuple_input;
pub mod tuple_output;

pub use primitive_bindings::*;
pub use sort_key::SortKey;
pub use tuple_binding::TupleBinding;
pub use tuple_input::TupleInput;
pub use tuple_output::TupleOutput;