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