We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b1129 commit be5653cCopy full SHA for be5653c
src/custom_keyword.rs
@@ -198,6 +198,7 @@ macro_rules! impl_clone_for_custom_keyword {
198
($ident:ident) => {
199
impl $crate::__private::Copy for $ident {}
200
201
+ #[allow(clippy::expl_impl_clone_on_copy)]
202
impl $crate::__private::Clone for $ident {
203
fn clone(&self) -> Self {
204
*self
src/custom_punctuation.rs
@@ -169,6 +169,7 @@ macro_rules! impl_clone_for_custom_punctuation {
169
($ident:ident, $($tt:tt)+) => {
170
171
172
173
174
175
0 commit comments