Struct http_problem::http::BadRequest
source · [−]pub struct BadRequest { /* private fields */ }
Expand description
A 400 - Bad Request
error.
Used when the request is syntactically wrong.
Trait Implementations
sourceimpl CustomProblem for BadRequest
impl CustomProblem for BadRequest
sourcefn problem_type(&self) -> Uri
fn problem_type(&self) -> Uri
A URI reference that identifies the problem type. Read more
sourcefn status_code(&self) -> StatusCode
fn status_code(&self) -> StatusCode
The HTTP status code for this problem type. Read more
sourcefn add_extensions(&self, _: &mut Extensions)
fn add_extensions(&self, _: &mut Extensions)
Add extensions to the final problem instance. Read more
sourceimpl Debug for BadRequest
impl Debug for BadRequest
sourceimpl Display for BadRequest
impl Display for BadRequest
sourceimpl Error for BadRequest
impl Error for BadRequest
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl RefUnwindSafe for BadRequest
impl Send for BadRequest
impl Sync for BadRequest
impl Unpin for BadRequest
impl UnwindSafe for BadRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more