Enum ig::AddPortError[][src]

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 Debug for AddPortError[src]

impl Display for AddPortError[src]

impl Error for AddPortError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Typeable for T where
    T: Any