(&self, f: &mut std::fmt::Formatter)
| 19 | |
| 20 | impl std::fmt::Display for InputFormat { |
| 21 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 22 | match self { |
| 23 | // important: Should match clap::ValueEnum format |
| 24 | InputFormat::Wkt => write!(f, "wkt"), |
| 25 | InputFormat::Tgf => write!(f, "tgf"), |
| 26 | } |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | #[derive(Debug, Clone, ValueEnum)] |
nothing calls this directly
no outgoing calls
no test coverage detected