Trait petgraph::visit::IntoNodeReferences [] [src]

pub trait IntoNodeReferences: Data + IntoNodeIdentifiers {
    type NodeRef: NodeRef<NodeId=Self::NodeId, Weight=Self::NodeWeight>;
    type NodeReferences: Iterator<Item=Self::NodeRef>;
    fn node_references(self) -> Self::NodeReferences;
}

Access to the sequence of the graph’s nodes

Associated Types

Required Methods

Implementors