Enum ig::AddAnyPortError[][src]

pub enum AddAnyPortError {
    ActionNotAuthorized,
    InternalPortZeroInvalid,
    NoPortsAvailable,
    ExternalPortInUse,
    OnlyPermanentLeasesSupported,
    DescriptionTooLong,
    RequestError(RequestError),
}

Errors returned by Gateway::add_any_port and Gateway::get_any_address

Variants

ActionNotAuthorized

The client is not authorized to perform the operation.

InternalPortZeroInvalid

Can not add a mapping for local port 0.

NoPortsAvailable

The gateway does not have any free ports.

ExternalPortInUse

The gateway can only map internal ports to same-numbered external ports and this external port is in use.

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 AddAnyPortError[src]

impl Display for AddAnyPortError[src]

impl Error for AddAnyPortError[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