Skip to content

build(deps): bump taiki-e/install-action from 2.33.12 to 2.33.16 #3152

build(deps): bump taiki-e/install-action from 2.33.12 to 2.33.16

build(deps): bump taiki-e/install-action from 2.33.12 to 2.33.16 #3152

GitHub Actions / clippy succeeded May 6, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (2)

actix-http/src/h1/dispatcher.rs|709 col 29| error: assigning the result of Clone::clone() may be inefficient
--> actix-http/src/h1/dispatcher.rs:709:29
|
709 | ... req.conn_data = this.conn_data.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use clone_from(): req.conn_data.clone_from(&this.conn_data)
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
= note: -D clippy::assigning-clones implied by -D warnings
= help: to override -D warnings add #[allow(clippy::assigning_clones)]
actix-http/src/h2/dispatcher.rs|129 col 21| error: assigning the result of Clone::clone() may be inefficient
--> actix-http/src/h2/dispatcher.rs:129:21
|
129 | req.conn_data = this.conn_data.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use clone_from(): req.conn_data.clone_from(&this.conn_data)
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones