pub struct WMap {
pub map: BTreeMap<u64, DataSlice>,
}Expand description
Implements an updateable file based on some underlying storage.
Fields§
§map: BTreeMap<u64, DataSlice>Map of outstanding writes which have not yet been written to the underlying file.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for WMap
impl Send for WMap
impl Sync for WMap
impl Unpin for WMap
impl UnwindSafe for WMap
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