pub struct Group<'f> { /* private fields */ }Expand description
A group within an HDF5 file.
Implementations§
Source§impl<'f> Group<'f>
impl<'f> Group<'f>
Sourcepub fn offset_size(&self) -> u8
pub fn offset_size(&self) -> u8
Size of file offsets in bytes.
Sourcepub fn length_size(&self) -> u8
pub fn length_size(&self) -> u8
Size of file lengths in bytes.
Sourcepub fn members(&self) -> Result<(Vec<Group<'f>>, Vec<Dataset<'f>>)>
pub fn members(&self) -> Result<(Vec<Group<'f>>, Vec<Dataset<'f>>)>
List all child members, partitioned into groups and datasets.
Sourcepub fn attributes(&self) -> Result<Vec<Attribute>>
pub fn attributes(&self) -> Result<Vec<Attribute>>
List attributes on this group.
Auto Trait Implementations§
impl<'f> Freeze for Group<'f>
impl<'f> !RefUnwindSafe for Group<'f>
impl<'f> Send for Group<'f>
impl<'f> Sync for Group<'f>
impl<'f> Unpin for Group<'f>
impl<'f> UnsafeUnpin for Group<'f>
impl<'f> !UnwindSafe for Group<'f>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more