Function eager_futures::any[][src]

pub fn any<'a: 'b, 'b, T: 'a>(
    iter: impl IntoIterator<Item = &'b Eager<'a, T>>
) -> Eager<'a, T>

Return an eager future that completes after any of the input eager futures complete. The output of the returned eager future is the output of the first eager futures completed.