Fix/suppress new Clippy warnings introduced in Rust 1.82

This commit is contained in:
Keavon Chambers
2024-10-25 10:31:42 -07:00
parent c3a3c4c907
commit a395fbf063
3 changed files with 4 additions and 4 deletions

View File

@@ -25,6 +25,7 @@ macro_rules! tagged_value {
/// A type that is known, allowing serialization (serde::Deserialize is not object safe)
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[allow(clippy::large_enum_variant)] // TODO(TrueDoctor): Properly solve this disparity between the size of the largest and next largest variants
pub enum TaggedValue {
None,
$( $(#[$meta] ) *$identifier( $ty ), )*