Type Alias network_interface::Netmask

source ·
pub type Netmask<T> = Option<T>;
Expand description

An alias for an Option that wraps either a Ipv4Addr or a Ipv6Addr representing the IP for a Network Interface netmask

Aliased Type§

enum Netmask<T> {
    None,
    Some(T),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(T)

Some value of type T.