Builder: set the max file size.
(mut self, max_size: u64)
| 333 | |
| 334 | /// Builder: set the max file size. |
| 335 | pub fn with_max_size(mut self, max_size: u64) -> Self { |
| 336 | self.max_size = Some(max_size); |
| 337 | self |
| 338 | } |
| 339 | |
| 340 | /// Builder: alias for with_max_size. |
| 341 | pub fn with_max_file_size(mut self, max_size: u64) -> Self { |
no outgoing calls