pub trait Joinable<Output>:
Task
+ Send
+ Debug {
// Required method
fn join(&mut self) -> Output;
}Expand description
A Joinable can be awaited for completion in a thread-blocking fashion.
Specific types of ActorRef and ActorSystemHandle can be joined to wait for their completion.