Enum rouille::proxy::ProxyError [] [src]

pub enum ProxyError {
    BodyAlreadyExtracted,
    IoError(IoError),
    HttpParseError,
}

Error that can happen when dispatching the request to another server.

Variants

Can't pass through the body of the request because it was already extracted.

Could not read the body from the request, or could not connect to the remote server, or the connection to the remote server closed unexpectedly.

The destination server didn't produce compliant HTTP.

Trait Implementations

impl Debug for ProxyError
[src]

Formats the value using the given formatter.

impl From<IoError> for ProxyError
[src]

Performs the conversion.

impl Error for ProxyError
[src]

A short description of the error. Read more

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

impl Display for ProxyError
[src]

Formats the value using the given formatter.