Struct petgraph::graph::WalkEdges [] [src]

pub struct WalkEdges<Ix: IndexType = DefIndex> {
    // some fields omitted
}

Deprecated.

A “walker” object that can be used to step through the edge list of a node.

See .walk_edges_directed() for more information.

Methods

impl<Ix: IndexType> WalkEdges<Ix>
[src]

Fetch the next edge index in the walk for graph g.

Fetch the next edge index and the next node index in the walk for graph g.

The next node indices are always the others than the starting point where the WalkEdges value was created. For an Outgoing walk, the target nodes, for an Incoming walk, the source nodes of the edge.

Trait Implementations

impl<Ix: Clone + IndexType> Clone for WalkEdges<Ix>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Ix: Debug + IndexType> Debug for WalkEdges<Ix>
[src]

Formats the value using the given formatter.