Trait lup::Lup [] [src]

pub trait Lup<I, T> {
    type Inner;
    fn start() -> Self;
fn it(&mut self, _: I, _: T) -> bool;
fn unwrap(self) -> Self::Inner; }

Implemented by custom loops.

Associated Types

The resulting type.

Required Methods

Initialize loop.

Iterate loop.

Unwrap the resulting value.

Implementors