Trait petgraph::visit::NodeRef [] [src]

pub trait NodeRef: Copy {
    type NodeId;
    type Weight;
    fn id(&self) -> Self::NodeId;
    fn weight(&self) -> &Self::Weight;
}

A node reference.

Associated Types

Required Methods

Implementors