(inner: QcowState)
| 136 | |
| 137 | impl QcowMetadata { |
| 138 | pub(crate) fn new(inner: QcowState) -> Self { |
| 139 | QcowMetadata { |
| 140 | decoder: Arc::from(inner.header.get_decoder()), |
| 141 | inner: RwLock::new(inner), |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | /// Maps a multicluster guest read range to a list of read mappings. |
| 146 | /// |
nothing calls this directly
no test coverage detected