浏览代码

Fix impossible lifetime bounds

Using Routes<'static> used to make these functions impossible because it created a reference that needed to be valid for the static lifetime

Closes: #243
Approved by: dlrobertson
jD91mZM2 6 年之前
父节点
当前提交
d23aee483f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/iface/ethernet.rs

+ 2 - 2
src/iface/ethernet.rs

@@ -281,11 +281,11 @@ impl<'b, 'c, 'e, DeviceT> Interface<'b, 'c, 'e, DeviceT>
         self.inner.has_ip_addr(addr)
     }
 
-    pub fn routes(&self) -> &'e Routes {
+    pub fn routes(&self) -> &Routes<'e> {
         &self.inner.routes
     }
 
-    pub fn routes_mut(&mut self) -> &'e mut Routes {
+    pub fn routes_mut(&mut self) -> &mut Routes<'e> {
         &mut self.inner.routes
     }