pub trait GetMut<'a, L> { type Item; // Required method fn get_mut(&'a mut self, location: L) -> Self::Item; }
Get a mutable reference to the value at location.
location