Skip to main content

Crate rustyhdf5_io

Crate rustyhdf5_io 

Source
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§

BorrowedReader
Zero-copy reader over a borrowed byte slice.
FileReader
File-backed reader that loads the entire file into memory.
FileWriter
File-backed writer that writes bytes to a file on disk.
MemoryReader
In-memory reader backed by an owned Vec<u8>.
ParallelConfig
Configuration for lane-partitioned parallel decompression.

Traits§

HDF5Read
Read-only access to HDF5 data.
HDF5ReadWrite
Read-write access to HDF5 data.