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.
pub trait IntoDataset<U, V> {
// Required method
fn into_dataset(self) -> DatasetBase<U, V>;
}Thge IntoDataset trait defines a method for consuming the caller to convert it into a
dataset.