IntoRow

Trait IntoRow 

Source
pub trait IntoRow<'a> {
    // Required method
    fn to_row<T>(self) -> Row<'a>;
}
Expand description

Trait for converting to a (Polars) row

Required Methods§

Source

fn to_row<T>(self) -> Row<'a>

Convert to a (Polars) row

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.

Implementors§

Source§

impl<'a> IntoRow<'a> for Check