Enum tokio::prelude::future::Loop
[−]
[src]
pub enum Loop<T, S> { Break(T), Continue(S), }
The status of a loop_fn
loop.
Variants
Break(T)
Indicates that the loop has completed with output T
.
Continue(S)
Indicates that the loop function should be called again with input
state S
.
Trait Implementations
impl<T, S> Debug for Loop<T, S> where
S: Debug,
T: Debug,
[src]
S: Debug,
T: Debug,