Trait permutohedron::control::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

Provided Methods

Implementations on Foreign Types

impl ControlFlow for ()
[src]

impl<E> ControlFlow for Result<(), E>
[src]

[src]

[src]

Implementors