[][src]Struct rustc_ap_rustc_data_structures::graph::iterate::DepthFirstSearch

pub struct DepthFirstSearch<'graph, G: ?Sized> where
    G: DirectedGraph + WithNumNodes + WithSuccessors
{ /* fields omitted */ }

A "depth-first search" iterator for a directed graph.

Methods

impl<'graph, G: ?Sized> DepthFirstSearch<'graph, G> where
    G: DirectedGraph + WithNumNodes + WithSuccessors
[src]

pub fn new(graph: &'graph G, start_node: G::Node) -> Self[src]

Trait Implementations

impl<'_, G: ?Sized> Iterator for DepthFirstSearch<'_, G> where
    G: DirectedGraph + WithNumNodes + WithSuccessors
[src]

type Item = G::Node

The type of the elements being iterated over.

Auto Trait Implementations

impl<'graph, G: ?Sized> Unpin for DepthFirstSearch<'graph, G> where
    <G as DirectedGraph>::Node: Unpin

impl<'graph, G: ?Sized> Sync for DepthFirstSearch<'graph, G> where
    G: Sync,
    <G as DirectedGraph>::Node: Sync

impl<'graph, G: ?Sized> Send for DepthFirstSearch<'graph, G> where
    G: Sync,
    <G as DirectedGraph>::Node: Send

impl<'graph, G: ?Sized> UnwindSafe for DepthFirstSearch<'graph, G> where
    G: RefUnwindSafe,
    <G as DirectedGraph>::Node: UnwindSafe

impl<'graph, G: ?Sized> RefUnwindSafe for DepthFirstSearch<'graph, G> where
    G: RefUnwindSafe,
    <G as DirectedGraph>::Node: RefUnwindSafe

Blanket Implementations

impl<T> Erased for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<E> SpecializationError for E[src]