Allowable column types
| 21 | |
| 22 | // Allowable column types |
| 23 | enum ColType { |
| 24 | Enum(&'static [&'static str]), |
| 25 | NaiveDate, |
| 26 | Other, // Generic/unspecified case |
| 27 | } |
| 28 | |
| 29 | // Column metadata |
| 30 | struct DataCol { |
nothing calls this directly
no outgoing calls
no test coverage detected