grafeo-common 0.5.41

Common types, memory allocators, and utilities for Grafeo
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Storage section abstractions for the `.grafeo` container format.
//!
//! The container file stores data in typed **sections**, each independently
//! addressable and checksummed. This module defines the contract between
//! section serializers (in `grafeo-core`) and section I/O (in `grafeo-storage`).

pub mod section;

pub use section::{
    Section, SectionDirectoryEntry, SectionFlags, SectionMemoryConfig, SectionType, TierOverride,
};