use super::*; impl IAsyncAction { /// Waits for the `IAsyncAction` to finish. pub fn join(&self) -> Result<()> { Async::join(self) } } impl IAsyncOperation { /// Waits for the `IAsyncOperation` to finish. pub fn join(&self) -> Result { Async::join(self) } } impl IAsyncActionWithProgress

{ /// Waits for the `IAsyncActionWithProgress

` to finish. pub fn join(&self) -> Result<()> { Async::join(self) } } impl IAsyncOperationWithProgress { /// Waits for the `IAsyncOperationWithProgress` to finish. pub fn join(&self) -> Result { Async::join(self) } }