pub struct EvictedBlocks {
pub physical: Vec<u32>,
pub disk_block_ids: Vec<u32>,
}Expand description
Result of evicting LRU cached blocks (Phase 6.1.e).
Fields§
§physical: Vec<u32>Physical block indices freed (caller calls PagedKvCache::free_block).
disk_block_ids: Vec<u32>Parallel disk-block IDs to release (caller calls
HighSpeedSwap::dec_disk_ref). Empty when HSS isn’t in use.
Implementations§
Trait Implementations§
Source§impl Clone for EvictedBlocks
impl Clone for EvictedBlocks
Source§fn clone(&self) -> EvictedBlocks
fn clone(&self) -> EvictedBlocks
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EvictedBlocks
impl Debug for EvictedBlocks
Source§impl Default for EvictedBlocks
impl Default for EvictedBlocks
Source§fn default() -> EvictedBlocks
fn default() -> EvictedBlocks
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EvictedBlocks
impl RefUnwindSafe for EvictedBlocks
impl Send for EvictedBlocks
impl Sync for EvictedBlocks
impl Unpin for EvictedBlocks
impl UnwindSafe for EvictedBlocks
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