| 2391 | /// A set of IDs references by the `HirRelationExpr` of an object. |
| 2392 | #[derive(Debug, Clone, Serialize, PartialEq, Eq)] |
| 2393 | pub struct DependencyIds(pub BTreeSet<CatalogItemId>); |
| 2394 | |
| 2395 | impl FromIterator<CatalogItemId> for DependencyIds { |
| 2396 | fn from_iter<T: IntoIterator<Item = CatalogItemId>>(iter: T) -> Self { |
no outgoing calls
no test coverage detected