Trait extendr_api::wrapper::dataframe::IntoDataFrameRow
source · pub trait IntoDataFrameRow<T> {
// Required method
fn into_dataframe(self) -> Result<Dataframe<T>>;
}Expand description
A trait to convert a collection of IntoDataFrameRow into
Dataframe. Typical usage involves using the derive-macro IntoDataFrameRow
on a struct, which would generate impl IntoDataframe<T> for Vec<T>.