//! Deserializer for MATLAB v7.3 `.mat` files.
use DeserializeOwned;
use crateMatError;
use crateMatValue;
use MatValueDeserializer;
/// Deserialize a MAT v7.3 file (or any MATLAB-compatible HDF5 file) into `T`.
///
/// The root is treated as a struct whose fields are the top-level datasets
/// and groups in the file.