Column metadata
| 28 | |
| 29 | // Column metadata |
| 30 | struct DataCol { |
| 31 | name: &'static str, |
| 32 | required: bool, |
| 33 | col_type: ColType, |
| 34 | } |
| 35 | |
| 36 | fn get_schema(schema_name: &str) -> Result<&[DataCol], Box<dyn Error>> { |
| 37 | let cols: &[DataCol]; |
nothing calls this directly
no outgoing calls
no test coverage detected