瀏覽代碼

Simplify enum_with_unknown! macro.

whitequark 4 年之前
父節點
當前提交
ed86780079
共有 9 個文件被更改,包括 17 次插入30 次删除
  1. 1 14
      src/macros.rs
  2. 1 1
      src/phy/pcap_writer.rs
  3. 5 5
      src/wire/icmpv4.rs
  4. 4 4
      src/wire/icmpv6.rs
  5. 1 1
      src/wire/igmp.rs
  6. 2 2
      src/wire/ipv6option.rs
  7. 1 1
      src/wire/ipv6routing.rs
  8. 1 1
      src/wire/mld.rs
  9. 1 1
      src/wire/ndiscoption.rs

+ 1 - 14
src/macros.rs

@@ -23,21 +23,8 @@ macro_rules! enum_with_unknown {
     (
         $( #[$enum_attr:meta] )*
         pub enum $name:ident($ty:ty) {
-            $( $variant:ident = $value:expr ),+ $(,)*
-        }
-    ) => {
-        enum_with_unknown! {
-            $( #[$enum_attr] )*
-            pub doc enum $name($ty) {
-                $( #[doc(shown)] $variant = $value ),+
-            }
-        }
-    };
-    (
-        $( #[$enum_attr:meta] )*
-        pub doc enum $name:ident($ty:ty) {
             $(
-              $( #[$variant_attr:meta] )+
+              $( #[$variant_attr:meta] )*
               $variant:ident = $value:expr $(,)*
             ),+
         }

+ 1 - 1
src/phy/pcap_writer.rs

@@ -10,7 +10,7 @@ use crate::time::Instant;
 
 enum_with_unknown! {
     /// Captured packet header type.
-    pub doc enum PcapLinkType(u32) {
+    pub enum PcapLinkType(u32) {
         /// Ethernet frames
         Ethernet =   1,
         /// IPv4 or IPv6 packets (depending on the version field)

+ 5 - 5
src/wire/icmpv4.rs

@@ -8,7 +8,7 @@ use crate::wire::{Ipv4Packet, Ipv4Repr};
 
 enum_with_unknown! {
     /// Internet protocol control message type.
-    pub doc enum Message(u8) {
+    pub enum Message(u8) {
         /// Echo reply
         EchoReply      =  0,
         /// Destination unreachable
@@ -52,7 +52,7 @@ impl fmt::Display for Message {
 
 enum_with_unknown! {
     /// Internet protocol control message subtype for type "Destination Unreachable".
-    pub doc enum DstUnreachable(u8) {
+    pub enum DstUnreachable(u8) {
         /// Destination network unreachable
         NetUnreachable   =  0,
         /// Destination host unreachable
@@ -131,7 +131,7 @@ impl fmt::Display for DstUnreachable {
 
 enum_with_unknown! {
     /// Internet protocol control message subtype for type "Redirect Message".
-    pub doc enum Redirect(u8) {
+    pub enum Redirect(u8) {
         /// Redirect Datagram for the Network
         Net     = 0,
         /// Redirect Datagram for the Host
@@ -145,7 +145,7 @@ enum_with_unknown! {
 
 enum_with_unknown! {
     /// Internet protocol control message subtype for type "Time Exceeded".
-    pub doc enum TimeExceeded(u8) {
+    pub enum TimeExceeded(u8) {
         /// TTL expired in transit
         TtlExpired  = 0,
         /// Fragment reassembly time exceeded
@@ -155,7 +155,7 @@ enum_with_unknown! {
 
 enum_with_unknown! {
     /// Internet protocol control message subtype for type "Parameter Problem".
-    pub doc enum ParamProblem(u8) {
+    pub enum ParamProblem(u8) {
         /// Pointer indicates the error
         AtPointer     = 0,
         /// Missing a required option

+ 4 - 4
src/wire/icmpv6.rs

@@ -11,7 +11,7 @@ use crate::wire::NdiscRepr;
 
 enum_with_unknown! {
     /// Internet protocol control message type.
-    pub doc enum Message(u8) {
+    pub enum Message(u8) {
         /// Destination Unreachable.
         DstUnreachable  = 0x01,
         /// Packet Too Big.
@@ -98,7 +98,7 @@ impl fmt::Display for Message {
 
 enum_with_unknown! {
     /// Internet protocol control message subtype for type "Destination Unreachable".
-    pub doc enum DstUnreachable(u8) {
+    pub enum DstUnreachable(u8) {
         /// No Route to destination.
         NoRoute         = 0,
         /// Communication with destination administratively prohibited.
@@ -141,7 +141,7 @@ impl fmt::Display for DstUnreachable {
 
 enum_with_unknown! {
     /// Internet protocol control message subtype for the type "Parameter Problem".
-    pub doc enum ParamProblem(u8) {
+    pub enum ParamProblem(u8) {
         /// Erroneous header field encountered.
         ErroneousHdrField  = 0,
         /// Unrecognized Next Header type encountered.
@@ -168,7 +168,7 @@ impl fmt::Display for ParamProblem {
 
 enum_with_unknown! {
     /// Internet protocol control message subtype for the type "Time Exceeded".
-    pub doc enum TimeExceeded(u8) {
+    pub enum TimeExceeded(u8) {
         /// Hop limit exceeded in transit.
         HopLimitExceeded    = 0,
         /// Fragment reassembly time exceeded.

+ 1 - 1
src/wire/igmp.rs

@@ -9,7 +9,7 @@ use crate::wire::Ipv4Address;
 
 enum_with_unknown! {
     /// Internet Group Management Protocol v1/v2 message version/type.
-    pub doc enum Message(u8) {
+    pub enum Message(u8) {
         /// Membership Query
         MembershipQuery = 0x11,
         /// Version 2 Membership Report

+ 2 - 2
src/wire/ipv6option.rs

@@ -3,7 +3,7 @@ use crate::{Error, Result};
 
 enum_with_unknown! {
     /// IPv6 Extension Header Option Type
-    pub doc enum Type(u8) {
+    pub enum Type(u8) {
         /// 1 byte of padding
         Pad1 =  0,
         /// Multiple bytes of padding
@@ -24,7 +24,7 @@ impl fmt::Display for Type {
 enum_with_unknown! {
     /// Action required when parsing the given IPv6 Extension
     /// Header Option Type fails
-    pub doc enum FailureType(u8) {
+    pub enum FailureType(u8) {
         /// Skip this option and continue processing the packet
         Skip               = 0b00000000,
         /// Discard the containing packet

+ 1 - 1
src/wire/ipv6routing.rs

@@ -6,7 +6,7 @@ use crate::wire::Ipv6Address as Address;
 
 enum_with_unknown! {
     /// IPv6 Extension Routing Header Routing Type
-    pub doc enum Type(u8) {
+    pub enum Type(u8) {
         /// Source Route (DEPRECATED)
         ///
         /// See https://tools.ietf.org/html/rfc5095 for details.

+ 1 - 1
src/wire/mld.rs

@@ -15,7 +15,7 @@ enum_with_unknown! {
     /// more details.
     ///
     /// [RFC 3810 § 5.2.12]: https://tools.ietf.org/html/rfc3010#section-5.2.12
-    pub doc enum RecordType(u8) {
+    pub enum RecordType(u8) {
         /// Interface has a filter mode of INCLUDE for the specified multicast address.
         ModeIsInclude   = 0x01,
         /// Interface has a filter mode of EXCLUDE for the specified multicast address.

+ 1 - 1
src/wire/ndiscoption.rs

@@ -8,7 +8,7 @@ use crate::wire::{EthernetAddress, Ipv6Address, Ipv6Packet, Ipv6Repr};
 
 enum_with_unknown! {
     /// NDISC Option Type
-    pub doc enum Type(u8) {
+    pub enum Type(u8) {
         /// Source Link-layer Address
         SourceLinkLayerAddr = 0x1,
         /// Target Link-layer Address