pub trait ItemEdge<'a>where
    Self::EdgeData: 'a,
{ type EdgeData; type Idx; fn data(&self) -> &'a Self::EdgeData; fn target(&self) -> Self::Idx; }

Required Associated Types

Required Methods

Returns the data associated with this edge

Returns the index of the node this edge targets

Implementors