pub trait Fetch<Coords> { type Output; // Required method fn fetch(&self, coords: Coords) -> Self::Output; }