pub trait ToDataFrameVec {
// Required method
fn to_dataframe(&self) -> Result<DataFrame, PolarsError>;
}Expand description
Extension trait enabling .to_dataframe() on slices (and Vec via auto-deref)
Required Methods§
Sourcefn to_dataframe(&self) -> Result<DataFrame, PolarsError>
fn to_dataframe(&self) -> Result<DataFrame, PolarsError>
§Errors
Returns an error if DataFrame construction fails.