Enum actix_web::error::ReadlinesError [−][src]
#[non_exhaustive]
pub enum ReadlinesError {
EncodingError,
Payload(PayloadError),
LimitOverflow,
ContentTypeError(ContentTypeError),
}Expand description
Error type returned when reading body as lines.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Payload size is bigger than allowed. (default: 256kB)
Payload(PayloadError)Payload error.
Line limit exceeded.
ContentTypeError(ContentTypeError)ContentType error.
Trait Implementations
Performs the conversion.
Performs the conversion.
Returns appropriate status code for error. Read more
fn error_response(&self) -> HttpResponseⓘNotable traits for HttpResponse<Body>
impl Future for HttpResponse<Body> type Output = Result<Response<Body>, Error>;
fn error_response(&self) -> HttpResponseⓘNotable traits for HttpResponse<Body>
impl Future for HttpResponse<Body> type Output = Result<Response<Body>, Error>;Creates full response for error. Read more
Auto Trait Implementations
impl !RefUnwindSafe for ReadlinesErrorimpl Send for ReadlinesErrorimpl Sync for ReadlinesErrorimpl Unpin for ReadlinesErrorimpl !UnwindSafe for ReadlinesError