A Rust crate for checking and listing all network interfaces on a device.
This Rust crate provides a simple and straightforward way to retrieve a list of all network interfaces available on a device. It abstracts the platform-specific details and offers a unified interface for cross-platform compatibility.
To use this crate in your Rust project, add this in your main.rc
:
```toml extern crate getallinterfaces;
fn main() { let interface = getallinterfaces::selectnetworkinterface();
match interface {
Some(iface) => println!("Selected interface: {}", iface.name),
None => println!("No network interface selected."),
}
}
```