Trait petgraph::visit::IntoNodeIdentifiers[][src]

pub trait IntoNodeIdentifiers: GraphRef {
    type NodeIdentifiers: Iterator<Item = Self::NodeId>;
    fn node_identifiers(self) -> Self::NodeIdentifiers;
}

Access to the sequence of the graph’s NodeIds.

Associated Types

Required Methods

Implementations on Foreign Types

impl<'a, G> IntoNodeIdentifiers for &'a G where
    G: IntoNodeIdentifiers
[src]

Implementors