pub struct WMap {
pub map: BTreeMap<u64, DataSlice>,
}
Expand description
Updateable storage based on some underlying storage.
Fields§
§map: BTreeMap<u64, DataSlice>
Map of writes. Key is the storage offset of the last byte.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WMap
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