pub trait DataframeRowsIterExt<'a> {
// Required method
fn rows_iter<T>(
&'a self,
) -> PolarsResult<Box<dyn Iterator<Item = PolarsResult<T>> + 'a>>
where T: FromDataFrameRow<'a>;
}Required Methods§
fn rows_iter<T>(
&'a self,
) -> PolarsResult<Box<dyn Iterator<Item = PolarsResult<T>> + 'a>>where
T: FromDataFrameRow<'a>,
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.