Enum actix_web::error::PathError [−][src]
#[non_exhaustive]
pub enum PathError {
Deserialize(Error),
}
Expand description
A set of errors that can occur during parsing request paths
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
Deserialize error
Trait Implementations
Return BadRequest
for PathError
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 PathError
impl UnwindSafe for PathError
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