pub trait FindByFirst<ID, Data> { // Required method fn find_by_first(&self, id: &ID) -> Option<&Data>; }