Set the prefix filter. # Arguments `prefix` - Path prefix to filter files
(mut self, prefix: impl Into<String>)
| 233 | /// |
| 234 | /// * `prefix` - Path prefix to filter files |
| 235 | pub fn with_prefix(mut self, prefix: impl Into<String>) -> Self { |
| 236 | self.prefix = prefix.into(); |
| 237 | self |
| 238 | } |
| 239 | |
| 240 | /// Set the maximum file size to diff. |
| 241 | /// |
no outgoing calls