Enum futures::future::Loop [] [src]

pub enum Loop<T, S> {
    Break(T),
    Continue(S),
}

The status of a loop_fn loop.

Variants

Indicates that the loop has completed with output T.

Indicates that the loop function should be called again with input state S.

Trait Implementations

impl<T: Debug, S: Debug> Debug for Loop<T, S>
[src]

Formats the value using the given formatter.