pub trait DatasetDomain: Domain {
type ElementDomain: Domain;
}Expand description
A Domain representing a dataset.
This is distinguished from other domains because each element in the dataset corresponds to an individual.
Required Associated Types§
Sourcetype ElementDomain: Domain
type ElementDomain: Domain
The domain of each element in the dataset.
For vectors, this is the domain of the vector elements, for dataframes, this is the domain of the dataframe rows, and so on.
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.