pub struct Interface {
    pub index: u32,
    pub name: String,
    pub description: Option<String>,
    pub mac_addr: Option<MacAddr>,
    pub ipv4: Vec<Ipv4Addr>,
    pub ipv6: Vec<Ipv6Addr>,
    pub gateway: Option<Gateway>,
}
Expand description

Structure of Network Interface information

Fields

index: u32

Index of network interface

name: String

Name of network interface

description: Option<String>

Description of the network interface

On Windows, this field is the adapter name

mac_addr: Option<MacAddr>

MAC address of network interface

ipv4: Vec<Ipv4Addr>

List of IPv4 addresses for the network interface

ipv6: Vec<Ipv6Addr>

List of IPv6 addresses for the network interface

gateway: Option<Gateway>

Default gateway for the network interface

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.