Trait MapDataFrame

Source
pub trait MapDataFrame: DataFrameOps {
    // Provided methods
    fn from_map<V: NumericNative, U: AsRef<[V]>, K: AsRef<str>, B: AsRef<[(K, U)]>>(
        vals: B,
    ) -> DataFrame { ... }
    fn from_string_map<'a, U: AsRef<[&'a str]>, B: AsRef<[(&'a str, U)]>>(
        vals: B,
    ) -> DataFrame { ... }
}

Provided Methods§

Source

fn from_map<V: NumericNative, U: AsRef<[V]>, K: AsRef<str>, B: AsRef<[(K, U)]>>( vals: B, ) -> DataFrame

Source

fn from_string_map<'a, U: AsRef<[&'a str]>, B: AsRef<[(&'a str, U)]>>( vals: B, ) -> DataFrame

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.

Implementations on Foreign Types§

Source§

impl MapDataFrame for DataFrame

Implementors§