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