(self, nested: bool)
| 14 | |
| 15 | impl<T: Format> MaybeNested for Data<T> { |
| 16 | fn maybe_nested(self, nested: bool) -> Self { |
| 17 | if nested { |
| 18 | self.nested() |
| 19 | } else { |
| 20 | self |
| 21 | } |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | fn load_config_file(path: &str, nested: bool, figment: Figment) -> Figment { |
no outgoing calls
no test coverage detected