pub struct MultiMap<K: U64 = u64, V: Serialize + DeserializeOwned + Clone = Properties> { /* private fields */ }Expand description
A local key-multiValue store
Trait Implementations§
Source§impl<K: Clone + U64, V: Clone + Serialize + DeserializeOwned + Clone> Clone for MultiMap<K, V>
impl<K: Clone + U64, V: Clone + Serialize + DeserializeOwned + Clone> Clone for MultiMap<K, V>
Source§impl<K: Debug + U64, V: Debug + Serialize + DeserializeOwned + Clone> Debug for MultiMap<K, V>
impl<K: Debug + U64, V: Debug + Serialize + DeserializeOwned + Clone> Debug for MultiMap<K, V>
Source§impl<K: Default + U64, V: Default + Serialize + DeserializeOwned + Clone> Default for MultiMap<K, V>
impl<K: Default + U64, V: Default + Serialize + DeserializeOwned + Clone> Default for MultiMap<K, V>
Source§impl<K: U64, V: Serialize + DeserializeOwned + Clone> MultiMapStore<K, V> for MultiMap<K, V>
impl<K: U64, V: Serialize + DeserializeOwned + Clone> MultiMapStore<K, V> for MultiMap<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for MultiMap<K, V>
impl<K, V> RefUnwindSafe for MultiMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for MultiMap<K, V>
impl<K, V> Sync for MultiMap<K, V>
impl<K, V> Unpin for MultiMap<K, V>
impl<K, V> UnwindSafe for MultiMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().