Browse Source

iface: fix outdated docs on Interface::new

Elena Frank 1 year ago
parent
commit
2741503a55
1 changed files with 0 additions and 10 deletions
  1. 0 10
      src/iface/interface/mod.rs

+ 0 - 10
src/iface/interface/mod.rs

@@ -451,16 +451,6 @@ enum IgmpReportState {
 
 impl Interface {
     /// Create a network interface using the previously provided configuration.
-    ///
-    /// # Panics
-    /// If a required option is not provided, this function will panic. Required
-    /// options are:
-    ///
-    /// - [ethernet_addr]
-    /// - [neighbor_cache]
-    ///
-    /// [ethernet_addr]: #method.ethernet_addr
-    /// [neighbor_cache]: #method.neighbor_cache
     pub fn new<D>(config: Config, device: &mut D, now: Instant) -> Self
     where
         D: Device + ?Sized,