You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have looked for existing issues (including closed) about this
Bug Report
Version
0.7.5
Platform
Linux 6.6.34 #1-NixOS SMP PREEMPT_DYNAMIC Sun Jun 16 11:47:49 UTC 2024 x86_64 GNU/Linux
Description
When deriving FromRef, clippy will trigger clippy::clone_on_ref_ptr. This lint is allow-by-default, which is probably why nobody reported it yet.
You can reproduce the issue by adding axum@0.7.5 as a dependency with the macros feature enabled, and writing the following code:
use std::sync::Arc;use axum::extract::FromRef;#[derive(Clone,FromRef)]pubstructMyState{substate:Arc<MySubstate>,}pubstructMySubstate{}
And then running clippy with the offending lint set to warn (or higher):
$ cargo clippy -- -Wclippy::clone_on_ref_ptr
warning: using `.clone()` on a ref-counted pointer --> src/lib.rs:7:12|7 | substate: Arc<MySubstate>,| ^^^ help: try: `Arc::<MySubstate>::clone(&substate: Arc)`| = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_ref_ptr = note: requested on the command line with `-W clippy::clone-on-ref-ptr`
I would assume adding a clippy::clone_on_ref_ptr to the #[allow(…)] attribute on this line would fix the problem. I can open a PR if that's a fine solution.
The text was updated successfully, but these errors were encountered:
I would assume adding a clippy::clone_on_ref_ptr to the #[allow(…)] attribute on this line would fix the problem. I can open a PR if that's a fine solution.
Bug Report
Version
0.7.5
Platform
Linux 6.6.34 #1-NixOS SMP PREEMPT_DYNAMIC Sun Jun 16 11:47:49 UTC 2024 x86_64 GNU/Linux
Description
When deriving
FromRef
, clippy will triggerclippy::clone_on_ref_ptr
. This lint is allow-by-default, which is probably why nobody reported it yet.You can reproduce the issue by adding
axum@0.7.5
as a dependency with themacros
feature enabled, and writing the following code:And then running clippy with the offending lint set to
warn
(or higher):I would assume adding a
clippy::clone_on_ref_ptr
to the#[allow(…)]
attribute on this line would fix the problem. I can open a PR if that's a fine solution.The text was updated successfully, but these errors were encountered: