(&self, f: &mut std::fmt::Formatter)
| 16 | |
| 17 | impl std::fmt::Display for OutputFormat { |
| 18 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 19 | match self { |
| 20 | // important: Should match clap::ValueEnum format |
| 21 | OutputFormat::Points => write!(f, "points"), |
| 22 | OutputFormat::Line => write!(f, "line"), |
| 23 | OutputFormat::Image => write!(f, "image"), |
| 24 | } |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | pub struct AttractorFormatter { |
nothing calls this directly
no outgoing calls
no test coverage detected