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
sourceimpl<G> Data for Reversed<G> where
G: Data,
impl<G> Data for Reversed<G> where
G: Data,
type NodeWeight = G::NodeWeight
type EdgeWeight = G::EdgeWeight
sourceimpl<G> DataMap for Reversed<G> where
G: DataMap,
impl<G> DataMap for Reversed<G> where
G: DataMap,
fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight>
fn edge_weight(&self, id: Self::EdgeId) -> Option<&Self::EdgeWeight>
sourceimpl<G> DataMapMut for Reversed<G> where
G: DataMapMut,
impl<G> DataMapMut for Reversed<G> where
G: DataMapMut,
fn node_weight_mut(&mut self, id: Self::NodeId) -> Option<&mut Self::NodeWeight>
fn edge_weight_mut(&mut self, id: Self::EdgeId) -> Option<&mut Self::EdgeWeight>
sourceimpl<G> EdgeCount for Reversed<G> where
G: EdgeCount,
impl<G> EdgeCount for Reversed<G> where
G: EdgeCount,
sourcefn edge_count(&self) -> usize
fn edge_count(&self) -> usize
Return the number of edges in the graph.
sourceimpl<G> EdgeIndexable for Reversed<G> where
G: EdgeIndexable,
impl<G> EdgeIndexable for Reversed<G> where
G: EdgeIndexable,
sourcefn edge_bound(&self) -> usize
fn edge_bound(&self) -> usize
Return an upper bound of the edge indices in the graph (suitable for the size of a bitmap). Read more
sourcefn from_index(&self, i: usize) -> Self::EdgeId
fn from_index(&self, i: usize) -> Self::EdgeId
Convert i
to an edge index. i
must be a valid value in the graph.
sourceimpl<G> GetAdjacencyMatrix for Reversed<G> where
G: GetAdjacencyMatrix,
impl<G> GetAdjacencyMatrix for Reversed<G> where
G: GetAdjacencyMatrix,
sourcefn adjacency_matrix(&self) -> Self::AdjMatrix
fn adjacency_matrix(&self) -> Self::AdjMatrix
Create the adjacency matrix
sourceimpl<G> IntoEdgeReferences for Reversed<G> where
G: IntoEdgeReferences,
impl<G> IntoEdgeReferences for Reversed<G> where
G: IntoEdgeReferences,
type EdgeRef = ReversedEdgeReference<G::EdgeRef>
type EdgeReferences = ReversedEdgeReferences<G::EdgeReferences>
fn edge_references(self) -> Self::EdgeReferences
sourceimpl<G> IntoEdges for Reversed<G> where
G: IntoEdgesDirected,
impl<G> IntoEdges for Reversed<G> where
G: IntoEdgesDirected,
type Edges = ReversedEdges<G::EdgesDirected>
fn edges(self, a: Self::NodeId) -> Self::Edges
sourceimpl<G> IntoEdgesDirected for Reversed<G> where
G: IntoEdgesDirected,
impl<G> IntoEdgesDirected for Reversed<G> where
G: IntoEdgesDirected,
type EdgesDirected = ReversedEdges<G::EdgesDirected>
fn edges_directed(self, a: Self::NodeId, dir: Direction) -> Self::Edges
sourceimpl<G> IntoNeighbors for Reversed<G> where
G: IntoNeighborsDirected,
impl<G> IntoNeighbors for Reversed<G> where
G: IntoNeighborsDirected,
type Neighbors = G::NeighborsDirected
sourcefn neighbors(self, n: G::NodeId) -> G::NeighborsDirected
fn neighbors(self, n: G::NodeId) -> G::NeighborsDirected
Return an iterator of the neighbors of node a
.
sourceimpl<G> IntoNeighborsDirected for Reversed<G> where
G: IntoNeighborsDirected,
impl<G> IntoNeighborsDirected for Reversed<G> where
G: IntoNeighborsDirected,
type NeighborsDirected = G::NeighborsDirected
fn neighbors_directed(self, n: G::NodeId, d: Direction) -> G::NeighborsDirected
sourceimpl<G> IntoNodeIdentifiers for Reversed<G> where
G: IntoNodeIdentifiers,
impl<G> IntoNodeIdentifiers for Reversed<G> where
G: IntoNodeIdentifiers,
type NodeIdentifiers = G::NodeIdentifiers
fn node_identifiers(self) -> Self::NodeIdentifiers
sourceimpl<G> IntoNodeReferences for Reversed<G> where
G: IntoNodeReferences,
impl<G> IntoNodeReferences for Reversed<G> where
G: IntoNodeReferences,
type NodeRef = G::NodeRef
type NodeReferences = G::NodeReferences
fn node_references(self) -> Self::NodeReferences
sourceimpl<G> NodeIndexable for Reversed<G> where
G: NodeIndexable,
impl<G> NodeIndexable for Reversed<G> where
G: NodeIndexable,
sourcefn node_bound(&self) -> usize
fn node_bound(&self) -> usize
Return an upper bound of the node indices in the graph (suitable for the size of a bitmap). Read more
sourcefn from_index(&self, i: usize) -> Self::NodeId
fn from_index(&self, i: usize) -> Self::NodeId
Convert i
to a node index. i
must be a valid value in the graph.
impl<G: Copy> Copy for Reversed<G>
impl<G: GraphRef> GraphRef for Reversed<G>
impl<G> NodeCompactIndexable for Reversed<G> where
G: NodeCompactIndexable,
Auto Trait Implementations
impl<G> RefUnwindSafe for Reversed<G> where
G: RefUnwindSafe,
impl<G> Send for Reversed<G> where
G: Send,
impl<G> Sync for Reversed<G> where
G: Sync,
impl<G> Unpin for Reversed<G> where
G: Unpin,
impl<G> UnwindSafe for Reversed<G> where
G: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more