armour 0.30.27

DDL and serialization for key-value storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod attribute;
pub mod entry;

// Re-exports from armour-core
pub use armour_core::enc;
pub use armour_core::error;
pub use armour_core::fuid;
pub use armour_core::id64;
pub use armour_core::key_part;
pub use armour_core::key_type;
pub use armour_core::num_ops;
pub use armour_core::record_status;
pub use armour_core::zbase;

pub use armour_core::{ArmourError, IdStr};
pub use attribute::EntityAttribute;

pub type Result<T, E = ArmourError> = core::result::Result<T, E>;