IntoDataset

Trait IntoDataset 

Source
pub trait IntoDataset<U, V> {
    // Required method
    fn into_dataset(self) -> DatasetBase<U, V>;
}
Expand description

Thge IntoDataset trait defines a method for consuming the caller to convert it into a dataset.

Required Methods§

Implementors§

Source§

impl<U, V, A> IntoDataset<U, V> for A
where A: Into<DatasetBase<U, V>>,