(&self, f: &mut std::fmt::Formatter<'_>)
| 151 | |
| 152 | impl std::fmt::Debug for SegmentHandle { |
| 153 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 154 | f.debug_struct("SegmentHandle") |
| 155 | .field("id", &self.id) |
| 156 | .field("schema_hash", &format_args!("{:x}", self.schema_hash)) |
| 157 | .field("tile_count", &self.tile_count) |
| 158 | .finish() |
| 159 | } |
| 160 | } |