(mut self, skip: bool)
| 162 | /// Set whether to skip binary files. |
| 163 | #[must_use] |
| 164 | pub fn with_skip_binary(mut self, skip: bool) -> Self { |
| 165 | self.skip_binary = skip; |
| 166 | self |
| 167 | } |
| 168 | |
| 169 | /// Set whether to record empty files. |
| 170 | #[must_use] |
no outgoing calls