pub(super) struct L2CacheBackend<S: Storage> {
file: Arc<S>,
header: Arc<Header>,
}
Expand description
I/O back-end for the L2 table cache.
Fields§
§file: Arc<S>
Qcow2 metadata file.
header: Arc<Header>
Qcow2 header.
Implementations§
Trait Implementations§
Source§impl<S: Storage> AsyncLruCacheBackend for L2CacheBackend<S>
impl<S: Storage> AsyncLruCacheBackend for L2CacheBackend<S>
Auto Trait Implementations§
impl<S> Freeze for L2CacheBackend<S>
impl<S> RefUnwindSafe for L2CacheBackend<S>where
S: RefUnwindSafe,
impl<S> Send for L2CacheBackend<S>
impl<S> Sync for L2CacheBackend<S>
impl<S> Unpin for L2CacheBackend<S>
impl<S> UnwindSafe for L2CacheBackend<S>where
S: RefUnwindSafe,
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