Enum std::io::net::addrinfo::FlagExperimental [-]  [+] [src]

pub enum Flag {
    AddrConfig,
    All,
    CanonName,
    NumericHost,
    NumericServ,
    Passive,
    V4Mapped,
}

Flags which can be or'd into the flags field of a Hint. These are used to manipulate how a query is performed.

The meaning of each of these flags can be found with man -s 3 getaddrinfo

Variants

AddrConfig
All
CanonName
NumericHost
NumericServ
Passive
V4Mapped

Trait Implementations

Derived Implementations

impl Copy for Flag