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

Trait to convert raw types into rows

Required Methods

Converts raw type to rows of a table

Implementors