Enum rouille::cgi::CgiError [] [src]

pub enum CgiError {
    BodyAlreadyExtracted,
    IoError(IoError),
}

Error that can happen when parsing the JSON input.

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 execute the CGI program.

Trait Implementations

impl Debug for CgiError
[src]

Formats the value using the given formatter.

impl From<IoError> for CgiError
[src]

Performs the conversion.

impl Error for CgiError
[src]

A short description of the error. Read more

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

impl Display for CgiError
[src]

Formats the value using the given formatter.