pub trait MutableMap<K, V> {
type UnderlyingMap: GenericMap<K, V>;
// Required method
fn make_mut(&mut self) -> &mut Self::UnderlyingMap;
}Expand description
A trait implemented by BTreeMap, im_rc::OrdMap and Rc<BTreeMap>.
You frequently want to clone incrementals a lot. Making it so
Required Associated Types§
type UnderlyingMap: GenericMap<K, V>
Required Methods§
Sourcefn make_mut(&mut self) -> &mut Self::UnderlyingMap
fn make_mut(&mut self) -> &mut Self::UnderlyingMap
For Rc