nodedb-array 0.2.1

Shared ND sparse array engine (coordinate-tuple indexed, tile-based) for NodeDB Origin and Lite
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: Apache-2.0

pub mod footer;
pub mod framing;
pub mod header;
pub mod tile_entry;

pub use footer::{FOOTER_MAGIC, SegmentFooter};
pub use framing::{BlockFraming, FRAMING_OVERHEAD};
pub use header::{FORMAT_VERSION, HEADER_MAGIC, SegmentHeader};
pub use tile_entry::{TileEntry, TileKind};