sequence_exact

Function sequence_exact 

Source
pub async fn sequence_exact<I, E>(
    cmds: I,
    env: &mut E,
) -> Result<BoxFuture<'static, ExitStatus>, <I::Item as Spawn<E>>::Error>
Expand description

Spawns an exact-size iterator of sequential items.

Commands are sequentially executed regardless of the exit status of previous commands. All non-fatal errors are reported and swallowed, however, “fatal” errors are bubbled up and the sequence terminated.