Skip to main content

hadris_common/types/
mod.rs

1//! Contains utility types commonly used for filesystems.
2
3pub mod endian;
4pub mod extent;
5/// Fixed-capacity representations for allocation-free parsing.
6pub mod no_alloc;
7/// Endian-aware integer types and alignment helpers.
8pub mod number;
9
10/// Layout types for metadata-only writing (requires `alloc` feature).
11#[cfg(feature = "alloc")]
12pub mod layout;