Trait opendp::transformations::manipulation::DatasetDomain

source ·
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§

source

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.

Object Safety§

This trait is not object safe.

Implementors§