Builder: set the skip-binary flag.
(mut self, skip_binary: bool)
| 327 | |
| 328 | /// Builder: set the skip-binary flag. |
| 329 | pub fn with_skip_binary(mut self, skip_binary: bool) -> Self { |
| 330 | self.skip_binary = skip_binary; |
| 331 | self |
| 332 | } |
| 333 | |
| 334 | /// Builder: set the max file size. |
| 335 | pub fn with_max_size(mut self, max_size: u64) -> Self { |
no outgoing calls