(iter: T)
| 2374 | |
| 2375 | impl FromIterator<(CatalogItemId, GlobalId)> for ResolvedIds { |
| 2376 | fn from_iter<T: IntoIterator<Item = (CatalogItemId, GlobalId)>>(iter: T) -> Self { |
| 2377 | let mut ids = ResolvedIds::empty(); |
| 2378 | ids.extend(iter); |
| 2379 | ids |
| 2380 | } |
| 2381 | } |
| 2382 | |
| 2383 | impl Extend<(CatalogItemId, GlobalId)> for ResolvedIds { |
nothing calls this directly
no test coverage detected