1 2 3 4 5 6 7 8 9 10 11 12
//! Contains utility types commonly used for filesystems. pub mod endian; pub mod extent; /// 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;