Struct petgraph::graph::Edge
[−]
[src]
pub struct Edge<E, Ix: IndexType = DefIndex> {
pub weight: E,
// some fields omitted
}The graph's edge type.
Fields
weight: E
Associated edge data.
Methods
impl<E, Ix: IndexType> Edge<E, Ix>[src]
pub fn next_edge(&self, dir: EdgeDirection) -> EdgeIndex<Ix>[src]
Accessor for data structure internals: the next edge for the given direction.
pub fn source(&self) -> NodeIndex<Ix>[src]
Return the source node index.
pub fn target(&self) -> NodeIndex<Ix>[src]
Return the target node index.
Trait Implementations
impl<E: Debug, Ix: Debug + IndexType> Debug for Edge<E, Ix>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more