Skip to main content

Row

Trait Row 

Source
pub trait Row {
    // Required method
    fn row(self) -> RowStruct;
}
Expand description

Trait to convert raw types into rows

Required Methods§

Source

fn row(self) -> RowStruct

Converts raw type to rows of a table

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl Row for RowStruct

Source§

impl<T, C> Row for T
where T: IntoIterator<Item = C>, C: Cell,