pub trait Hdf5Object {
// Required methods
fn to_hdf5(&self, file: &mut File) -> Result<()>;
fn from_hdf5(idx: usize, file: &File) -> Result<Self>
where Self: Sized;
}Expand description
An Hdf5Object can be stored and retrieved from an HDF5 file.
Required Methods§
Implementors§
impl Hdf5Object for ComPacket
Implementation of HDF5Object for ComPacket.