pub trait AdjacencyIndexWithValue: AdjacencyIndex {
type AValue: Clone;
// Required method
fn avalue(&self) -> Self::AValue;
}
pub trait AdjacencyIndexWithValue: AdjacencyIndex {
type AValue: Clone;
// Required method
fn avalue(&self) -> Self::AValue;
}