Return the [`ColumnarRecordsStructuredExt`] of the blob.
(&self)
| 288 | |
| 289 | /// Return the [`ColumnarRecordsStructuredExt`] of the blob. |
| 290 | pub fn structured(&self) -> Option<&ColumnarRecordsStructuredExt> { |
| 291 | match self { |
| 292 | BlobTraceUpdates::Row(_) => None, |
| 293 | BlobTraceUpdates::Both(_, s) => Some(s), |
| 294 | BlobTraceUpdates::Structured { key_values, .. } => Some(key_values), |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | /// Return the estimated memory usage of the raw data. |
| 299 | pub fn goodbytes(&self) -> usize { |
no outgoing calls
no test coverage detected