lxdb-format 0.1.0

Binary format records and sections for LXDB datasets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Section payload is compressed.
pub const COMPRESSED: u8 = 1 << 0;

/// Section payload is encrypted.
pub const ENCRYPTED: u8 = 1 << 1;

/// Section may be ignored by readers that do not support it.
pub const OPTIONAL: u8 = 1 << 2;

/// No section flags are enabled.
pub const NONE: u8 = 0;