Builder: set the skip-binary flag.
(mut self, skip_binary: bool)
| 319 | |
| 320 | /// Builder: set the skip-binary flag. |
| 321 | pub fn with_skip_binary(mut self, skip_binary: bool) -> Self { |
| 322 | self.skip_binary = skip_binary; |
| 323 | self |
| 324 | } |
| 325 | |
| 326 | /// Builder: set the max file size. |
| 327 | pub fn with_max_size(mut self, max_size: u64) -> Self { |
no outgoing calls