1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
/// https://support.hdfgroup.org/HDF5/doc/H5.format.html
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate trackable;

pub use self::error::{Error, ErrorKind};
pub use self::file::Hdf5File;

pub mod level0;
pub mod level1;
pub mod level2;

mod error;
mod file;
mod io;

pub type Result<T> = std::result::Result<T, Error>;