浏览代码

Silence clippy lint for const assert work-around, remove const where using features not yet stable in 1.40

Ben Stabler 4 年之前
父节点
当前提交
d5a98dd059
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      src/wire/ipv4.rs

+ 4 - 3
src/wire/ipv4.rs

@@ -54,7 +54,7 @@ impl Address {
     }
 
     /// Return an IPv4 address as a sequence of octets, in big-endian.
-    pub const fn as_bytes(&self) -> &[u8] {
+    pub fn as_bytes(&self) -> &[u8] {
         &self.0
     }
 
@@ -125,6 +125,7 @@ impl Cidr {
     ///
     /// # Panics
     /// This function panics if the prefix length is larger than 32.
+    #[allow(clippy::no_effect)]
     pub const fn new(address: Address, prefix_len: u8) -> Cidr {
         // Replace with const panic (or assert) when stabilized
         // see: https://github.com/rust-lang/rust/issues/51999
@@ -153,7 +154,7 @@ impl Cidr {
     }
 
     /// Return the network mask of this IPv4 CIDR.
-    pub const fn netmask(&self) -> Address {
+    pub fn netmask(&self) -> Address {
         if self.prefix_len == 0 {
             return Address([0, 0, 0, 0]);
         }
@@ -190,7 +191,7 @@ impl Cidr {
     }
 
     /// Return the network block of this IPv4 CIDR.
-    pub const fn network(&self) -> Cidr {
+    pub fn network(&self) -> Cidr {
         let mask = self.netmask().0;
         let network = [
             self.address.0[0] & mask[0],