[][src]Enum igd::AddPortError

pub enum AddPortError {
    ActionNotAuthorized,
    InternalPortZeroInvalid,
    ExternalPortZeroInvalid,
    PortInUse,
    SamePortValuesRequired,
    OnlyPermanentLeasesSupported,
    DescriptionTooLong,
    RequestError(RequestError),
}

Errors returned by Gateway::add_port

Variants

ActionNotAuthorized

The client is not authorized to perform the operation.

InternalPortZeroInvalid

Can not add a mapping for local port 0.

ExternalPortZeroInvalid

External port number 0 (any port) is considered invalid by the gateway.

PortInUse

The requested mapping conflicts with a mapping assigned to another client.

SamePortValuesRequired

The gateway requires that the requested internal and external ports are the same.

OnlyPermanentLeasesSupported

The gateway only supports permanent leases (ie. a lease_duration of 0).

DescriptionTooLong

The description was too long for the gateway to handle.

RequestError(RequestError)

Some other error occured performing the request.

Trait Implementations

impl Display for AddPortError[src]

impl Debug for AddPortError[src]

impl Error for AddPortError[src]

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T