Răsfoiți Sursa

Merge pull request #803 from elenaf9/iface/fix-comment

iface: fix outdated docs on `Interface::new`
Thibaut Vandervelden 1 an în urmă
părinte
comite
6139bc89cd
1 a modificat fișierele cu 2 adăugiri și 9 ștergeri
  1. 2 9
      src/iface/interface/mod.rs

+ 2 - 9
src/iface/interface/mod.rs

@@ -453,20 +453,13 @@ 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
+    /// This function panics if the [`Config::hardware_address`] does not match
+    /// the medium of the device.
     pub fn new<D>(config: Config, device: &mut D, now: Instant) -> Self
     where
         D: Device + ?Sized,
     {
         let caps = device.capabilities();
-
         assert_eq!(
             config.hardware_addr.medium(),
             caps.medium,