pub trait Get<L> { type Item; // Required method fn get(&self, location: L) -> Self::Item; }
Get an owned value at location.
location