Enum netsim::AddRouteError[]

pub enum AddRouteError {
    ProcessFileDescriptorLimit(Error),
    SystemFileDescriptorLimit(Error),
    NameContainsNul,
}

Errors returned by add_route and Route::add

Variants

Process file descriptor limit hit

System file descriptor limit hit

Interface name contains an interior NUL byte

Trait Implementations

impl Debug for AddRouteError
[src]

Formats the value using the given formatter. Read more

impl Display for AddRouteError

Formats the value using the given formatter. Read more

impl Error for AddRouteError

This method is soft-deprecated. Read more

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

Auto Trait Implementations