Closed
Description
The "Notable traits" popup for Entry::or_insert
shows notable traits for &'_ mut I
when it should show &'a mut V
(or at least &'_ mut V
):
Note that this happens for other functions on Entry
. Another example is Entry::key
which shows &'_ mut I
when it should show &'a K
.
I'm not 100% sure this is a bug, but the behavior is definitely confusing: I'm not sure what the notable traits popup is referring to when it references an I
type parameter (mut I
doesn't even appear in the file that Entry
is defined in...).