When I updated to the latest clippy via rustup update, I ran into a new lint that doesn't seem to like returning `impl SomeTrait`: https://rust-lang.github.io/rust-clippy/master/index.html#/let_with_type_underscore So tracing, when used [like this](https://github.com/damccull/zero2prod/blob/main/zero2prod/src/routes/login/get.rs#L10) is causing this lint to trigger. ```rust #[tracing::instrument(name = "Login form", skip(flashes))] pub async fn login_form(flashes: IncomingFlashes) -> impl IntoResponse { //... } ```