From 3450e795bc56afe26218ef5912c1789f6d0417bd Mon Sep 17 00:00:00 2001 From: teoxoy <28601907+teoxoy@users.noreply.github.com> Date: Wed, 15 Mar 2023 17:46:50 +0100 Subject: [PATCH] enable `clippy::rest_pat_in_fully_bound_structs` lint --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 6a35e93d7d..f072d59386 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -199,7 +199,8 @@ tree. unused_extern_crates, unused_qualifications, clippy::pattern_type_mismatch, - clippy::missing_const_for_fn + clippy::missing_const_for_fn, + clippy::rest_pat_in_fully_bound_structs )] #![cfg_attr(not(test), deny(clippy::panic))]