Struct hdf5::File [] [src]

pub struct File { /* fields omitted */ }

A file.

Methods

impl File
[src]

Create a new file.

If the file already exists, its content will be truncated.

Open an existing file.

Encode data.

The function is a shortcut for Encoder::new followed by Encodable::encode.

Write data.

The function is a shortcut for Writer::new followed by Writer::write.

Trait Implementations

impl Drop for File
[src]

A method called when the value goes out of scope. Read more