pub trait IntoIDMap<T> { // Required method fn into_id_map( self, ids: &HashSet<Rc<str>>, ) -> Result<HashMap<Rc<str>, Vec<T>>>; }
Trait for converting an iterator into a HashMap grouped by IDs.
HashMap
Convert into a HashMap grouped by IDs.