Trait IntoDataset

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

Required Methods§

Implementors§

Source§

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