Set the limit of the files
(mut self, limit: Option<usize>)
| 383 | |
| 384 | /// Set the limit of the files |
| 385 | pub fn with_limit(mut self, limit: Option<usize>) -> Self { |
| 386 | self.fetch = limit; |
| 387 | self |
| 388 | } |
| 389 | |
| 390 | /// Set `show_sizes` to determine whether to display partition sizes |
| 391 | pub fn with_show_sizes(mut self, show_sizes: bool) -> Self { |
no outgoing calls