Przeglądaj źródła

Add Hash trait for enum_with_unknown macro

ssrlive 2 lat temu
rodzic
commit
d7d6294a57
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/macros.rs

+ 1 - 1
src/macros.rs

@@ -41,7 +41,7 @@ macro_rules! enum_with_unknown {
             ),+ $(,)?
             ),+ $(,)?
         }
         }
     ) => {
     ) => {
-        #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy)]
+        #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash)]
         #[cfg_attr(feature = "defmt", derive(defmt::Format))]
         #[cfg_attr(feature = "defmt", derive(defmt::Format))]
         $( #[$enum_attr] )*
         $( #[$enum_attr] )*
         pub enum $name {
         pub enum $name {