Look up a collection bundle by an identifier.
(&self, id: Id)
| 172 | } |
| 173 | /// Look up a collection bundle by an identifier. |
| 174 | pub fn lookup_id(&self, id: Id) -> Option<CollectionBundle<'scope, T>> { |
| 175 | self.bindings.get(&id).cloned() |
| 176 | } |
| 177 | |
| 178 | pub(super) fn error_logger(&self) -> ErrorLogger { |
| 179 | ErrorLogger::new(self.debug_name.clone()) |
no test coverage detected