Allow very complex type usage in ntex-rt

This commit is contained in:
pavlospt 2024-04-04 09:47:05 +03:00
parent 9eb268729c
commit 2b404870a8
No known key found for this signature in database
GPG key ID: F890BDDD44FB8B25

View file

@ -140,6 +140,7 @@ mod glommio {
/// Blocking operation completion future. It resolves with results
/// of blocking function execution.
#[allow(clippy::type_complexity)]
pub struct JoinHandle<T> {
fut:
Either<task::JoinHandle<T>, Pin<Box<dyn Future<Output = Result<T, Canceled>>>>>,