Expand description
I/O abstraction layer for HDF5 file access.
Provides traits and adapters for reading and writing HDF5 data from files, memory buffers, and optionally memory-mapped files.
Re-exports§
pub use rustyhdf5_format;
Modules§
- prefetch
- Prefetch / read-ahead for chunked data access.
- sweep
- Sweep detection and prediction for N-dimensional chunked dataset access.
Structs§
- Borrowed
Reader - Zero-copy reader over a borrowed byte slice.
- File
Reader - File-backed reader that loads the entire file into memory.
- File
Writer - File-backed writer that writes bytes to a file on disk.
- Memory
Reader - In-memory reader backed by an owned
Vec<u8>. - Parallel
Config - Configuration for lane-partitioned parallel decompression.
Traits§
- HDF5
Read - Read-only access to HDF5 data.
- HDF5
Read Write - Read-write access to HDF5 data.