pub struct DeserializedCache {
pub meta: CacheMeta,
pub pages: Vec<(u32, PageBytes)>,
pub logical_seqs: Vec<LogicalSeq>,
}Expand description
Output of deserialize_pages.
Fields§
§meta: CacheMetaStatic metadata exactly as it was at capture time.
pages: Vec<(u32, PageBytes)>(physical_ix, page_bytes) pairs in canonical (ix-ascending) order.
logical_seqs: Vec<LogicalSeq>Logical sequences in canonical (id-ascending) order.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeserializedCache
impl RefUnwindSafe for DeserializedCache
impl Send for DeserializedCache
impl Sync for DeserializedCache
impl Unpin for DeserializedCache
impl UnsafeUnpin for DeserializedCache
impl UnwindSafe for DeserializedCache
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more