Trait petgraph::visit::IntoNodeIdentifiers
source · [−]pub trait IntoNodeIdentifiers: GraphRef {
type NodeIdentifiers: Iterator<Item = Self::NodeId>;
fn node_identifiers(self) -> Self::NodeIdentifiers;
}
Expand description
Access to the sequence of the graph’s NodeId
s.
Required Associated Types
source
type NodeIdentifiers: Iterator<Item = Self::NodeId>
Required Methods
source