Finalize and return the inner `PrintOptions`
(mut self)
| 391 | |
| 392 | /// Finalize and return the inner `PrintOptions` |
| 393 | fn into_inner(mut self) -> PrintOptions { |
| 394 | if self.inner.format == PrintFormat::Automatic { |
| 395 | self.inner.format = PrintFormat::Table; |
| 396 | } |
| 397 | |
| 398 | self.inner |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | fn config_file_type_from_str(ext: &str) -> Option<ConfigFileType> { |
no outgoing calls
no test coverage detected