Version 0.9.0
[v0.9.0] - 2022-04-20
Added
Changed
Improve realizations of some methods (get_key1
, get_key2
, get_keys
, get_key1_value
, get_key2_value
,
get_keys_value
, contains_keys
, get_mut_key1
, get_mut_key2
, remove_key1
, remove_key2
, insert_unchecked
)
Removed
- Removed unnecessary lifetime bounds on implementations of
ExactSizeIterator
forIter
,Keys
,Values
,IterMut
,ValuesMut
structures; - Removed
K1: Clone
andK2: Clone
bounds for allVacantEntry
methods exceptinsert
method; - Removed unnecessary
K1: Eq + Hash
andK2: Eq + Hash
bounds for allEntry
methods. Remained
K1: Clone
andK2: Clone
bounds only for the methods that need on it. - Removed unnecessary
K1: Eq + Hash + Clone
andK2: Eq + Hash + Clone
on implementations of
Display
and
Error
traits forOccupiedError
structure. - Removed unnecessary
K1: Eq + Hash + Clone
andK2: Eq + Hash + Clone
on implementations of
Display
and
Error
traits forTryInsertError
structure.
Fixed
Nothing