Trait DataSet

Source
pub trait DataSet:
    Clone
    + Debug
    + Deref<Target = Self::Data>
    + From<DataFrame>
    + Sync
    + Serialize
    + for<'a> Deserialize<'a> {
    type Data;

    // Required method
    fn labels(&self) -> &BTreeSet<String>;
}
Expand description

Data set trait.

Required Associated Types§

Source

type Data

Data set underlying data structure.

Required Methods§

Source

fn labels(&self) -> &BTreeSet<String>

Gets the set of variables labels.

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§