struct CachedGalley {
last_used: u32,
children: Option<Arc<[u64]>>,
galley: Arc<Galley>,
}
Fields§
§last_used: u32
When it was last used
children: Option<Arc<[u64]>>
Hashes of all other entries this one depends on for quick re-layout.
Their last_used
s should be updated alongside this one to make sure they’re
not evicted.
galley: Arc<Galley>
Auto Trait Implementations§
impl Freeze for CachedGalley
impl RefUnwindSafe for CachedGalley
impl Send for CachedGalley
impl Sync for CachedGalley
impl Unpin for CachedGalley
impl UnwindSafe for CachedGalley
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