Allow type underscore (probably in instrument)

This commit is contained in:
asonix 2023-06-01 17:33:43 -05:00
parent 25b60e6935
commit 22e526fd2a

View file

@ -99,6 +99,8 @@ impl Process {
})
}
#[allow(unknown_lints)]
#[allow(clippy::let_with_type_underscore)]
#[tracing::instrument(level = "trace", skip_all)]
fn spawn_fn<F, Fut>(mut self, f: F) -> impl AsyncRead + Unpin
where