Trait to convert raw types into rows
| 81 | |
| 82 | /// Trait to convert raw types into rows |
| 83 | pub trait Row { |
| 84 | /// Converts raw type to rows of a table |
| 85 | fn row(self) -> RowStruct; |
| 86 | } |
| 87 | |
| 88 | impl<T, C> Row for T |
| 89 | where |
nothing calls this directly
no outgoing calls
no test coverage detected