And disable the global lint.
}
}
+
+// Suppress large enum variant lint as the LIST is very large compared
+// to the boolean variant.
#[derive(Debug)]
+#[allow(clippy::large_enum_variant)]
pub enum DetectKrb5TicketEncryptionData {
WEAK(bool),
LIST(DetectKrb5TicketEncryptionList),
#![allow(clippy::field_reassign_with_default)]
#![allow(clippy::for_loops_over_fallibles)]
#![allow(clippy::if_same_then_else)]
-#![allow(clippy::large_enum_variant)]
#![allow(clippy::manual_find)]
#![allow(clippy::map_flatten)]
#![allow(clippy::match_like_matches_macro)]