pub trait EdgeAttributes<G, Attr>where
G: Graph,{
// Required methods
fn edge(&self, e: G::Edge<'_>) -> &Attr;
fn edge_mut(&mut self, e: G::Edge<'_>) -> &mut Attr;
}
Expand description
Object with associated edge attributes.
pub trait EdgeAttributes<G, Attr>where
G: Graph,{
// Required methods
fn edge(&self, e: G::Edge<'_>) -> &Attr;
fn edge_mut(&mut self, e: G::Edge<'_>) -> &mut Attr;
}
Object with associated edge attributes.