pub trait ItemEdge<'a>where Self::EdgeData: 'a,{ type EdgeData; type Idx; fn data(&self) -> &'a Self::EdgeData; fn target(&self) -> Self::Idx; }
Returns the data associated with this edge
Returns the index of the node this edge targets