Executor

Trait Executor 

Source
pub trait Executor {
    // Required method
    fn join(self) -> Vec<Result<()>> ;
}
Expand description

A trait representing a running executor

Required Methods§

Source

fn join(self) -> Vec<Result<()>>

Similar to the standard join, except that there can be several threads which must all return ().

Implementors§