Enum nat_traversal::MappingContextNewWarning []

pub enum MappingContextNewWarning {
    SearchGateway {
        if_name: String,
        if_addr: Ipv4Addr,
        err: SearchError,
    },
}

Variants

SearchGateway

Error finding IGD gateway. if_name and if_addr indicate the network interface being searched from when this error was raised.

Fields

if_name: String
if_addr: Ipv4Addr
err: SearchError

Trait Implementations

impl Debug for MappingContextNewWarning
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for MappingContextNewWarning

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for MappingContextNewWarning

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

The lower-level cause of this error, if any. Read more