Skip to main content

lxdb_format/
flags.rs

1/// Section payload is compressed.
2pub const COMPRESSED: u8 = 1 << 0;
3
4/// Section payload is encrypted.
5pub const ENCRYPTED: u8 = 1 << 1;
6
7/// Section may be ignored by readers that do not support it.
8pub const OPTIONAL: u8 = 1 << 2;
9
10/// No section flags are enabled.
11pub const NONE: u8 = 0;