Struct petgraph::graph::Edge
[−]
[src]
pub struct Edge<E, Ix = DefaultIx> { 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]
fn next_edge(&self, dir: Direction) -> EdgeIndex<Ix>
Accessor for data structure internals: the next edge for the given direction.
fn source(&self) -> NodeIndex<Ix>
Return the source node index.
fn target(&self) -> NodeIndex<Ix>
Return the target node index.
Trait Implementations
impl<E: Debug, Ix: Debug> Debug for Edge<E, Ix>
[src]
impl<E, Ix> Clone for Edge<E, Ix> where E: Clone, Ix: Copy
[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more