Returns a slice of the files in this group
(&self)
| 410 | |
| 411 | /// Returns a slice of the files in this group |
| 412 | pub fn files(&self) -> &[PartitionedFile] { |
| 413 | &self.files |
| 414 | } |
| 415 | |
| 416 | pub fn iter(&self) -> impl Iterator<Item = &PartitionedFile> { |
| 417 | self.files.iter() |
no outgoing calls