Enum finchers::request::ParseBodyError [] [src]

pub enum ParseBodyError<E> {
    Hyper(Error),
    Parse(E),
}

The error type of ParseBody<T>

Variants

Failure occurs when it receives the body stream

Failure occurs when it parses the request body into T

Trait Implementations

impl<E: Debug> Debug for ParseBodyError<E>
[src]

[src]

Formats the value using the given formatter.

impl<T> From<Error> for ParseBodyError<T>
[src]

[src]

Performs the conversion.