actix-rt: expose JoinError

This commit is contained in:
asonix 2021-02-05 17:05:22 -06:00
parent a77b70aed2
commit 505cf52929
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ pub mod time {
pub mod task {
//! Task management (Tokio re-exports).
pub use tokio::task::{spawn_blocking, yield_now, JoinHandle};
pub use tokio::task::{spawn_blocking, yield_now, JoinError, JoinHandle};
}
/// Spawns a future on the current thread.