pub enum HashMapDelta<T, U>{
Set(HashMap<T, U>),
Insert(T, U),
Remove(T),
}Variants§
Trait Implementations§
Source§impl<T, U> Clone for HashMapDelta<T, U>
impl<T, U> Clone for HashMapDelta<T, U>
Source§fn clone(&self) -> HashMapDelta<T, U>
fn clone(&self) -> HashMapDelta<T, U>
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<T, U> DeltaStruct<HashMapDelta<T, U>> for HashMap<T, U>
impl<T, U> DeltaStruct<HashMapDelta<T, U>> for HashMap<T, U>
fn apply(&mut self, delta: &HashMapDelta<T, U>)
Auto Trait Implementations§
impl<T, U> Freeze for HashMapDelta<T, U>
impl<T, U> RefUnwindSafe for HashMapDelta<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for HashMapDelta<T, U>
impl<T, U> Sync for HashMapDelta<T, U>
impl<T, U> Unpin for HashMapDelta<T, U>
impl<T, U> UnwindSafe for HashMapDelta<T, U>where
T: UnwindSafe,
U: UnwindSafe,
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