pub struct Hdf5TreeEntry {
pub path: String,
pub kind: Hdf5EntryKind,
pub shape: Option<Vec<usize>>,
}Expand description
An entry in the HDF5 group/dataset tree hierarchy.
Fields§
§path: StringFull path within the HDF5 file (e.g., /entry/histogram/counts).
kind: Hdf5EntryKindWhether this entry is a group or dataset.
shape: Option<Vec<usize>>Dataset shape, if this entry is a dataset.
Trait Implementations§
Source§impl Clone for Hdf5TreeEntry
impl Clone for Hdf5TreeEntry
Source§fn clone(&self) -> Hdf5TreeEntry
fn clone(&self) -> Hdf5TreeEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Hdf5TreeEntry
impl RefUnwindSafe for Hdf5TreeEntry
impl Send for Hdf5TreeEntry
impl Sync for Hdf5TreeEntry
impl Unpin for Hdf5TreeEntry
impl UnsafeUnpin for Hdf5TreeEntry
impl UnwindSafe for Hdf5TreeEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more