Enum igd::SearchError [] [src]

pub enum SearchError {
    HttpError(Error),
    InvalidResponse,
    IoError(Error),
    Utf8Error(Utf8Error),
    XmlError(XmlError),
}

Errors than can occur while trying to find the gateway.

Variants

HttpError(Error)

Http/Hyper error

InvalidResponse

Unable to process the response

IoError(Error)

IO Error

Utf8Error(Utf8Error)

UTF-8 decoding error

XmlError(XmlError)

XML processing error

Trait Implementations

impl Debug for SearchError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<Error> for SearchError
[src]

fn from(err: Error) -> SearchError

Performs the conversion.

impl From<Error> for SearchError
[src]

fn from(err: Error) -> SearchError

Performs the conversion.

impl From<Utf8Error> for SearchError
[src]

fn from(err: Utf8Error) -> SearchError

Performs the conversion.

impl From<XmlError> for SearchError
[src]

fn from(err: XmlError) -> SearchError

Performs the conversion.