Debug representation using the internal datums
(&self, f: &mut fmt::Formatter)
| 739 | impl fmt::Debug for RowRef { |
| 740 | /// Debug representation using the internal datums |
| 741 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 742 | f.write_str("RowRef{")?; |
| 743 | f.debug_list().entries(&*self).finish()?; |
| 744 | f.write_str("}") |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | /// Packs datums into a [`Row`]. |