(&self, f: &mut fmt::Formatter<'_>)
| 663 | |
| 664 | impl fmt::Display for RePartition { |
| 665 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 666 | write!( |
| 667 | f, |
| 668 | "{}rows-in-{}batches@{}", |
| 669 | self.row_count, |
| 670 | self.batches.len(), |
| 671 | self.idx |
| 672 | ) |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | struct CompareByRowCount(RePartition); |