Trait to convert raw type into table
| 190 | |
| 191 | /// Trait to convert raw type into table |
| 192 | pub trait Table { |
| 193 | /// Converts raw type to a table |
| 194 | fn table(self) -> TableStruct; |
| 195 | } |
| 196 | |
| 197 | impl<T, R> Table for T |
| 198 | where |
nothing calls this directly
no outgoing calls
no test coverage detected