Struct hdf5::Writer[][src]

pub struct Writer<'a> { /* fields omitted */ }

Implementations

Creates a writer for a dataset/attribute.

Any conversions (including hard/soft) are allowed by default.

Set maximum allowed conversion level.

Disallow all conversions.

Writes all data from the array arr into the given slice of the target dataset. The shape of arr must match the shape the set of elements included in the slice. If the array has a fixed number of dimensions, it must match the dimensionality of dataset. Use the multi-dimensional slice macro s![] from ndarray to conveniently create a multidimensional slice.

Writes an n-dimensional array view into a dataset/attribute.

The shape of the view must match the shape of the dataset/attribute exactly. The input argument must be convertible to an array view (this includes slices).

Writes a 1-dimensional array view into a dataset/attribute in memory order.

The number of elements in the view must match the number of elements in the destination dataset/attribute. The input argument must be convertible to a 1-dimensional array view (this includes slices).

Writes a scalar dataset/attribute.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.