Enum netsim::iface::SetIpv6AddrError []

pub enum SetIpv6AddrError {
    UnknownInterface,
    ProcessFileDescriptorLimit(Error),
    SystemFileDescriptorLimit(Error),
    PermissionDenied(Error),
    AddrNotAvailable(Error),
}

Errors raised when configuring network interfaces.

Variants

There is no interface with the given name

Process file descriptor limit hit

System file descriptor limit hit

Permission denied

Address not available

Trait Implementations

impl Debug for SetIpv6AddrError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for SetIpv6AddrError

Formats the value using the given formatter. Read more

impl Error for SetIpv6AddrError

A short description of the error. Read more

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

Auto Trait Implementations