pub trait MapMut<K, V>:
Map<K, V>
+ for<'a> GetMut<&'a K>
+ MapInsert<K, Output = Option<V>>
+ for<'a> Remove<&'a K> { }Expand description
Mutable map data structure.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".