Struct PrefixedKVStore
pub struct PrefixedKVStore<S: KVStore> { /* private fields */ }Expand description
Wrapper that logically behaves as a key-value store whose keys are always prefixed by prefix.
Implementations§
§impl<S: KVStore> PrefixedKVStore<S>
impl<S: KVStore> PrefixedKVStore<S>
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for PrefixedKVStore<S>where
S: Freeze,
impl<S> !RefUnwindSafe for PrefixedKVStore<S>
impl<S> Send for PrefixedKVStore<S>
impl<S> Sync for PrefixedKVStore<S>
impl<S> Unpin for PrefixedKVStore<S>where
S: Unpin,
impl<S> !UnwindSafe for PrefixedKVStore<S>
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