Trait hdf5::IntoData [] [src]

pub trait IntoData {
    type Target: Data;
    fn into_data(self) -> Result<Self::Target>;
}

An object capable of converting into data.

Associated Types

type Target: Data

The target type.

Required Methods

fn into_data(self) -> Result<Self::Target>

Perform the conversion.

Implementors