Consume and return the kind and virtual size.
(self)
| 267 | |
| 268 | /// Consume and return the kind and virtual size. |
| 269 | pub(crate) fn into_kind(self) -> (BackingKind, u64) { |
| 270 | (self.kind, self.virtual_size) |
| 271 | } |
| 272 | |
| 273 | /// Read from backing file, returning zeros for any portion beyond backing file size. |
| 274 | #[inline] |
no outgoing calls
no test coverage detected