macro_rules! map_mut {
($($input:tt)*) => { ... };
}Expand description
map_mut is exactly the same as map_ref, except it gives
mutable references (map_ref gives immutable references).
map_mut is almost never useful, so it’s recommended to use
map_ref instead.