pub trait IntoDataFrameRow<T> {
    // Required method
    fn into_dataframe(self) -> Result<Dataframe<T>>;
}

Required Methods§

Implementors§