pub trait NodeRef: Copy {
type NodeId;
type Weight;
// Required methods
fn id(&self) -> Self::NodeId;
fn weight(&self) -> &Self::Weight;
}
Expand description
A node reference.
pub trait NodeRef: Copy {
type NodeId;
type Weight;
// Required methods
fn id(&self) -> Self::NodeId;
fn weight(&self) -> &Self::Weight;
}
A node reference.