(mut self, record: bool)
| 169 | /// Set whether to record empty files. |
| 170 | #[must_use] |
| 171 | pub fn record_empty_files(mut self, record: bool) -> Self { |
| 172 | self.record_empty_files = record; |
| 173 | self |
| 174 | } |
| 175 | |
| 176 | /// Set the number of context lines. |
| 177 | #[must_use] |
no outgoing calls