Lines Matching defs:Interface
24 /// Interface is running. (see
34 /// Interface is a loopback interface. (see
37 /// Interface is a point-to-point link. (see
52 /// Interface manages own routes.
74 /// Interface is in promiscuous mode. (see
182 /// Interface is in polling mode.
226 /// Interface is in polling mode.
234 /// Interface is in polling mode.
238 /// Interface is winding down
246 /// Interface is being renamed
282 /// Interface has failed
286 /// Interface is a hot-spare
294 /// Interface is offline
351 pub struct Interface(libc::if_nameindex);
353 impl Interface {
365 impl fmt::Debug for Interface {
367 f.debug_struct("Interface")
389 pub fn to_slice(&self) -> &[Interface] {
390 let ifs = self.ptr.as_ptr() as *const Interface;
410 type Item = &'a Interface;
428 type Item = &'a Interface;
435 let ret = &*(self.ptr as *const Interface);
448 /// println!("Interface #{} is called {}", iface.index(), iface.name().to_string_lossy());