(mut self, skip: bool)
| 154 | /// Set whether to skip binary files. |
| 155 | #[must_use] |
| 156 | pub fn with_skip_binary(mut self, skip: bool) -> Self { |
| 157 | self.skip_binary = skip; |
| 158 | self |
| 159 | } |
| 160 | |
| 161 | /// Set whether to record empty files. |
| 162 | #[must_use] |
no outgoing calls