pub struct Recursive<G, F> where
G: GraphBase, { /* private fields */ }
Expand description
Recursively walks a graph using the recursive function recursive_fn
.
Implementations
Trait Implementations
Auto Trait Implementations
impl<G, F> RefUnwindSafe for Recursive<G, F> where
F: RefUnwindSafe,
G: RefUnwindSafe,
<G as GraphBase>::NodeId: RefUnwindSafe,
impl<G, F> Send for Recursive<G, F> where
F: Send,
G: Send,
<G as GraphBase>::NodeId: Send,
impl<G, F> Sync for Recursive<G, F> where
F: Sync,
G: Sync,
<G as GraphBase>::NodeId: Sync,
impl<G, F> Unpin for Recursive<G, F> where
F: Unpin,
G: Unpin,
<G as GraphBase>::NodeId: Unpin,
impl<G, F> UnwindSafe for Recursive<G, F> where
F: UnwindSafe,
G: UnwindSafe,
<G as GraphBase>::NodeId: 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