(
mut self,
name: impl Into<String>,
container_stats: ContainerStats,
)
| 2282 | } |
| 2283 | |
| 2284 | fn with( |
| 2285 | mut self, |
| 2286 | name: impl Into<String>, |
| 2287 | container_stats: ContainerStats, |
| 2288 | ) -> Self { |
| 2289 | let col = Column::from_name(name.into()); |
| 2290 | self.stats.insert(col, container_stats); |
| 2291 | self |
| 2292 | } |
| 2293 | |
| 2294 | /// Add null counts for the specified column. |
| 2295 | /// There must be the same number of null counts as |