Enum actix_web::error::QueryPayloadError [−][src]
#[non_exhaustive]
pub enum QueryPayloadError {
Deserialize(Error),
}
Expand description
A set of errors that can occur during parsing query strings.
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.
Deserialize(Error)
Tuple Fields
0: Error
Query deserialize error.
Trait Implementations
Performs the conversion.
Returns appropriate status code for error. Read more
fn error_response(&self) -> HttpResponseⓘNotable traits for HttpResponse<AnyBody>impl Future for HttpResponse<AnyBody> type Output = Result<Response<AnyBody>, Error>;
fn error_response(&self) -> HttpResponseⓘNotable traits for HttpResponse<AnyBody>impl Future for HttpResponse<AnyBody> type Output = Result<Response<AnyBody>, Error>;
Notable traits for HttpResponse<AnyBody>
impl Future for HttpResponse<AnyBody> type Output = Result<Response<AnyBody>, Error>;
Creates full response for error. Read more
Auto Trait Implementations
impl RefUnwindSafe for QueryPayloadError
impl Send for QueryPayloadError
impl Sync for QueryPayloadError
impl Unpin for QueryPayloadError
impl UnwindSafe for QueryPayloadError
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more