Trait petgraph::visit::ControlFlow[][src]

pub trait ControlFlow {
    fn continuing() -> Self;
fn should_break(&self) -> bool;
fn should_prune(&self) -> bool; }
Expand description

Control flow for callbacks.

The empty return value () is equivalent to continue.

Required methods

Implementations on Foreign Types

Implementors