(mut self, total_buckets: i32)
| 598 | self |
| 599 | } |
| 600 | pub fn with_total_buckets(mut self, total_buckets: i32) -> Self { |
| 601 | self.total_buckets = total_buckets; |
| 602 | self |
| 603 | } |
| 604 | pub fn with_data_files(mut self, data_files: Vec<DataFileMeta>) -> Self { |
| 605 | self.data_files = Some(data_files); |
| 606 | self |
no outgoing calls