(&self, f: &mut std::fmt::Formatter)
| 541 | |
| 542 | impl<OffsetSize: OffsetSizeTrait> std::fmt::Debug for GenericListViewArray<OffsetSize> { |
| 543 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 544 | let prefix = OffsetSize::PREFIX; |
| 545 | write!(f, "{prefix}ListViewArray\n[\n")?; |
| 546 | print_long_array(self, f, |array, index, f| { |
| 547 | std::fmt::Debug::fmt(&array.value(index), f) |
| 548 | })?; |
| 549 | write!(f, "]") |
| 550 | } |
| 551 | } |
| 552 | |
| 553 | impl<OffsetSize: OffsetSizeTrait> From<GenericListArray<OffsetSize>> |
nothing calls this directly
no test coverage detected