1 2 3 4
use crate::Vertex; pub type Parents<'a, T> = Vec<Option<&'a Vertex<T>>>; pub type ConnectedComponents<'a, T> = Vec<Vec<&'a Vertex<T>>>;