(&self)
| 389 | |
| 390 | impl<Stats, Metrics, Meta: Clone> Clone for StorageStatistics<Stats, Metrics, Meta> { |
| 391 | fn clone(&self) -> Self { |
| 392 | Self { |
| 393 | stats: Rc::clone(&self.stats), |
| 394 | meta: self.meta.clone(), |
| 395 | } |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | /// Statistics maintained for sources. Gauges can be uninitialized. |