Configure the partition to scan.
(mut self, partition: usize)
| 52 | |
| 53 | /// Configure the partition to scan. |
| 54 | pub fn with_partition(mut self, partition: usize) -> Self { |
| 55 | self.partition = Some(partition); |
| 56 | self |
| 57 | } |
| 58 | |
| 59 | /// Configure the [`FileOpener`] used to open files. |
| 60 | /// |
no outgoing calls