pub trait Executor { // Required method fn join(self) -> Vec<Result<()>> ⓘ; }
A trait representing a running executor
Similar to the standard join, except that there can be several threads which must all return ().
join
()