Struct finchers::task::AndThen [] [src]

pub struct AndThen<T, F> { /* fields omitted */ }

Trait Implementations

impl<T: Debug, F: Debug> Debug for AndThen<T, F>
[src]

[src]

Formats the value using the given formatter.

impl<T, F, R> Task for AndThen<T, F> where
    T: Task,
    F: Fn(T::Item) -> R,
    R: IntoFuture<Error = T::Error>, 
[src]

The type on success.

The type on failure.

The type of value returned from launch.

[src]

Launches itself and construct a Future, and then return it. Read more