Trait petgraph::visit::ControlFlow
[−]
[src]
pub trait ControlFlow { fn continuing() -> Self; fn should_break(&self) -> bool; }
Control flow for callbacks.
The empty return value ()
is equivalent to continue.
Required Methods
fn continuing() -> Self
fn should_break(&self) -> bool
Implementations on Foreign Types
impl ControlFlow for ()
[src]
fn continuing()
[src]
fn should_break(&self) -> bool
[src]
impl<E> ControlFlow for Result<(), E>
[src]
fn continuing() -> Self
[src]
fn should_break(&self) -> bool
[src]
Implementors
impl<B> ControlFlow for Control<B>