(mut self, record: bool)
| 161 | /// Set whether to record empty files. |
| 162 | #[must_use] |
| 163 | pub fn record_empty_files(mut self, record: bool) -> Self { |
| 164 | self.record_empty_files = record; |
| 165 | self |
| 166 | } |
| 167 | |
| 168 | /// Set the number of context lines. |
| 169 | #[must_use] |
no outgoing calls