Struct petgraph::visit::Reversed [−][src]
pub struct Reversed<G>(pub G);
Expand description
An edge-reversing graph adaptor.
All edges have the opposite direction with Reversed
.
Tuple Fields
0: G
Trait Implementations
type NodeWeight = G::NodeWeight
type EdgeWeight = G::EdgeWeight
Return the number of edges in the graph.
Return an upper bound of the edge indices in the graph (suitable for the size of a bitmap). Read more
Convert i
to an edge index. i
must be a valid value in the graph.
Create the adjacency matrix
type EdgeRef = ReversedEdgeReference<G::EdgeRef>
type EdgeReferences = ReversedEdgeReferences<G::EdgeReferences>
type Edges = ReversedEdges<G::EdgesDirected>
type EdgesDirected = ReversedEdges<G::EdgesDirected>
type Neighbors = G::NeighborsDirected
Return an iterator of the neighbors of node a
.
type NeighborsDirected = G::NeighborsDirected
type NodeIdentifiers = G::NodeIdentifiers
type NodeReferences = G::NodeReferences
Return an upper bound of the node indices in the graph (suitable for the size of a bitmap). Read more
Convert i
to a node index. i
must be a valid value in the graph.
Auto Trait Implementations
impl<G> RefUnwindSafe for Reversed<G> where
G: RefUnwindSafe,
impl<G> UnwindSafe for Reversed<G> where
G: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more