fn subgraph_edges_from_metric_closure<G>(
graph: G,
minimum_spanning_closure: G,
) -> (Vec<(<G as GraphBase>::NodeId, <G as GraphBase>::NodeId)>, HashSet<<G as GraphBase>::NodeId>)where
G: GraphBase + NodeCompactIndexable + IntoEdgeReferences + IntoNodeIdentifiers + GraphProp + IntoNodeReferences,
G::EdgeWeight: BoundedMeasure + Copy,
G::NodeId: Eq + Hash + Ord + Debug,