Builder: set the max file size.
(mut self, max_size: u64)
| 325 | |
| 326 | /// Builder: set the max file size. |
| 327 | pub fn with_max_size(mut self, max_size: u64) -> Self { |
| 328 | self.max_size = Some(max_size); |
| 329 | self |
| 330 | } |
| 331 | |
| 332 | /// Builder: alias for with_max_size. |
| 333 | pub fn with_max_file_size(mut self, max_size: u64) -> Self { |
no outgoing calls