Enum actix_web::error::ReadlinesError[][src]

pub enum ReadlinesError {
    EncodingError,
    PayloadError(PayloadError),
    LimitOverflow,
    ContentTypeError(ContentTypeError),
}
[]

Error type returned when reading body as lines.

Variants

[]

Error when decoding a line.

[]

Payload error.

[]

Line limit exceeded.

[]

ContentType error.

Trait Implementations

impl From<PayloadError> for ReadlinesError
[src]
[+]

[]

Performs the conversion.

impl From<ContentTypeError> for ReadlinesError
[src]
[+]

[]

Performs the conversion.

Auto Trait Implementations

impl Send for ReadlinesError

impl Sync for ReadlinesError