Struct petgraph::algo::dominators::Dominators [−][src]
The dominance relation for some graph and root.
Implementations
impl<N> Dominators<N> where
N: Copy + Eq + Hash,
[src]
impl<N> Dominators<N> where
N: Copy + Eq + Hash,
[src]pub fn root(&self) -> N
[src]
Get the root node used to construct these dominance relations.
pub fn immediate_dominator(&self, node: N) -> Option<N>
[src]
Get the immediate dominator of the given node.
Returns None
for any node that is not reachable from the root, and for
the root itself.
pub fn strict_dominators(&self, node: N) -> Option<DominatorsIter<'_, N>>
[src]
Iterate over the given node’s strict dominators.
If the given node is not reachable from the root, then None
is
returned.
pub fn dominators(&self, node: N) -> Option<DominatorsIter<'_, N>>
[src]
Iterate over all of the given node’s dominators (including the given node itself).
If the given node is not reachable from the root, then None
is
returned.
Trait Implementations
impl<N: Clone> Clone for Dominators<N> where
N: Copy + Eq + Hash,
[src]
impl<N: Clone> Clone for Dominators<N> where
N: Copy + Eq + Hash,
[src]fn clone(&self) -> Dominators<N>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl<N> RefUnwindSafe for Dominators<N> where
N: RefUnwindSafe,
N: RefUnwindSafe,
impl<N> Send for Dominators<N> where
N: Send,
N: Send,
impl<N> Sync for Dominators<N> where
N: Sync,
N: Sync,
impl<N> Unpin for Dominators<N> where
N: Unpin,
N: Unpin,
impl<N> UnwindSafe for Dominators<N> where
N: UnwindSafe,
N: UnwindSafe,