Trait DatasetConfig

Source
pub trait DatasetConfig: Clone {
    type Dataset: ConfigurableDataset<Config = Self>;

    // Provided method
    fn into_dataset(self) -> Result<Self::Dataset, DatasetError>
       where Self: Sized { ... }
}

Required Associated Types§

Source

type Dataset: ConfigurableDataset<Config = Self>

Provided Methods§

Source

fn into_dataset(self) -> Result<Self::Dataset, DatasetError>
where Self: Sized,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§