Trait AdjacencyIndexWithEindex

Source
pub trait AdjacencyIndexWithEindex: AdjacencyIndex {
    type EIndex: Copy + Eq;

    // Required method
    fn eindex(&self) -> Self::EIndex;
}

Required Associated Types§

Required Methods§

Source

fn eindex(&self) -> Self::EIndex

Implementations on Foreign Types§

Source§

impl<V, E> AdjacencyIndexWithEindex for (V, E)
where V: Copy + Eq, E: Copy + Eq,

Source§

type EIndex = E

Source§

fn eindex(&self) -> Self::EIndex

Implementors§