pub struct Hdf5WritePlan { /* private fields */ }Expand description
Validated HDF5 write plan.
A validated set of datasets and attributes ready to be serialized by
Hdf5Writer or Hdf5WritePlan::encode.
Implementations§
Source§impl Hdf5WritePlan
impl Hdf5WritePlan
pub fn datasets(&self) -> &[DatasetBuilder]
pub fn attributes(&self) -> &[AttributeBuilder]
pub fn group_attributes(&self) -> &[GroupAttributeBuilder]
pub fn validate(&self) -> Result<()>
Trait Implementations§
Source§impl Clone for Hdf5WritePlan
impl Clone for Hdf5WritePlan
Source§fn clone(&self) -> Hdf5WritePlan
fn clone(&self) -> Hdf5WritePlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Hdf5WritePlan
impl RefUnwindSafe for Hdf5WritePlan
impl Send for Hdf5WritePlan
impl Sync for Hdf5WritePlan
impl Unpin for Hdf5WritePlan
impl UnsafeUnpin for Hdf5WritePlan
impl UnwindSafe for Hdf5WritePlan
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