Trait AdjacencyIndexWithValue

Source
pub trait AdjacencyIndexWithValue: AdjacencyIndex {
    type AValue: Clone;

    // Required method
    fn avalue(&self) -> Self::AValue;
}

Required Associated Types§

Required Methods§

Source

fn avalue(&self) -> Self::AValue

Implementors§

Source§

impl<V, E, T> AdjacencyIndexWithValue for VIndexWithEIndexValue<V, E, T>
where V: Eq + Copy, T: Clone,

Source§

impl<V, T> AdjacencyIndexWithValue for VIndexWithValue<V, T>
where V: Eq + Copy, T: Clone,