hadris-common 2.0.0-rc.1

Common types and functions used by Hadris
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Contains utility types commonly used for filesystems.

pub mod endian;
pub mod extent;
pub mod file;
/// Fixed-capacity representations for allocation-free parsing.
pub mod no_alloc;
/// Endian-aware integer types and alignment helpers.
pub mod number;

/// Layout types for metadata-only writing (requires `alloc` feature).
#[cfg(feature = "alloc")]
pub mod layout;