[go: up one dir, main page]

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

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

Error that can happen when parsing the JSON input.

Variants

Can't parse 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.