enum CacheDependency {
None,
L2DependsOnRb,
RbDependsOnL2,
}Expand description
Current flush dependency direction between L2 and refblock caches
Variants§
None
No dependency set yet
L2DependsOnRb
Write refblock cache before writing anything from the L2 cache (during cluster allocation)
RbDependsOnL2
Write L2 cache before writing anything from the refblock cache (during cluster freeing)
Trait Implementations§
Source§impl Clone for CacheDependency
impl Clone for CacheDependency
Source§fn clone(&self) -> CacheDependency
fn clone(&self) -> CacheDependency
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 CacheDependency
impl Debug for CacheDependency
Source§impl Default for CacheDependency
impl Default for CacheDependency
Source§fn default() -> CacheDependency
fn default() -> CacheDependency
Returns the “default value” for a type. Read more
Source§impl PartialEq for CacheDependency
impl PartialEq for CacheDependency
impl Copy for CacheDependency
impl Eq for CacheDependency
impl StructuralPartialEq for CacheDependency
Auto Trait Implementations§
impl Freeze for CacheDependency
impl RefUnwindSafe for CacheDependency
impl Send for CacheDependency
impl Sync for CacheDependency
impl Unpin for CacheDependency
impl UnwindSafe for CacheDependency
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