Hotfix TRAIT_METHODS static->const

This commit is contained in:
Philipp Krones 2024-10-18 14:54:06 +02:00
parent 375ca8d90f
commit cf918d5601
No known key found for this signature in database
GPG Key ID: 1CA0DF2AF59D68A5

View File

@ -5182,7 +5182,8 @@ fn lifetime_param_cond(&self, impl_item: &hir::ImplItem<'_>) -> bool {
}
#[rustfmt::skip]
static TRAIT_METHODS: [ShouldImplTraitCase; 30] = [
#[expect(clippy::large_const_arrays, reason = "`Span` is not sync, so this can't be static")]
const TRAIT_METHODS: [ShouldImplTraitCase; 30] = [
ShouldImplTraitCase::new("std::ops::Add", "add", 2, FN_HEADER, SelfKind::Value, OutType::Any, true),
ShouldImplTraitCase::new("std::convert::AsMut", "as_mut", 1, FN_HEADER, SelfKind::RefMut, OutType::Ref, true),
ShouldImplTraitCase::new("std::convert::AsRef", "as_ref", 1, FN_HEADER, SelfKind::Ref, OutType::Ref, true),