pub struct MapStorageEngine {
pub map: HashMap<String, Vec<u8>>,
}
Fields§
§map: HashMap<String, Vec<u8>>
Implementations§
Trait Implementations§
Source§impl Clone for MapStorageEngine
impl Clone for MapStorageEngine
Source§fn clone(&self) -> MapStorageEngine
fn clone(&self) -> MapStorageEngine
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 Default for MapStorageEngine
impl Default for MapStorageEngine
Source§fn default() -> MapStorageEngine
fn default() -> MapStorageEngine
Returns the “default value” for a type. Read more
Source§impl StorageEngine for MapStorageEngine
impl StorageEngine for MapStorageEngine
Auto Trait Implementations§
impl Freeze for MapStorageEngine
impl RefUnwindSafe for MapStorageEngine
impl Send for MapStorageEngine
impl Sync for MapStorageEngine
impl Unpin for MapStorageEngine
impl UnwindSafe for MapStorageEngine
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