1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/// File implementation of a key value storage
#[cfg(feature = "std")]
mod file_key_value_storage;

/// File implementation of a value storage
#[cfg(feature = "std")]
mod file_value_storage;

/// In memory implementation of a key value storage
mod in_memory_key_value_storage;

/// In memory implementation of a value storage
mod in_memory_value_storage;

/// Trait defining the functions for a key value storage
mod key_value_storage;

/// This trait defines types which can be used as keys in JSON maps
mod to_string_key;

/// Trait defining the functions for a value storage
mod value_storage;

#[cfg(feature = "std")]
pub use file_key_value_storage::*;
#[cfg(feature = "std")]
pub use file_value_storage::*;
pub use in_memory_key_value_storage::*;
pub use in_memory_value_storage::*;
pub use key_value_storage::*;
pub use to_string_key::*;
pub use value_storage::*;