pub trait IntoVertices: Topological {
type Output: IntoIterator<Item = Self::Vertex>;
fn into_vertices(self) -> Self::Output;
}
pub trait IntoVertices: Topological {
type Output: IntoIterator<Item = Self::Vertex>;
fn into_vertices(self) -> Self::Output;
}