| 11 | |
| 12 | #[derive(Debug, Clone, ValueEnum)] |
| 13 | enum InputFormat { |
| 14 | /// One WKT geometry per line. Ignores trailing garbage; does not skip over leading garbage. |
| 15 | Wkt, |
| 16 | /// A geometry graph in TGF format |
| 17 | Tgf, |
| 18 | } |
| 19 | |
| 20 | impl std::fmt::Display for InputFormat { |
| 21 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected