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>.
Required Methods§
fn into_dataframe(self) -> Result<Dataframe<T>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".