Struct rocket::response::status::BadRequest [−][src]
pub struct BadRequest<R>(pub Option<R>);
Expand description
Sets the status of the response to 400 (Bad Request).
If a responder is supplied, the remainder of the response is delegated to it. If there is no responder, the body of the response will be empty.
Examples
A 400 Bad Request response without a body:
use rocket::response::status;
let response = status::BadRequest::<()>(None);
A 400 Bad Request response with a body:
use rocket::response::status;
let response = status::BadRequest(Some("error message"));
Tuple Fields
0: Option<R>
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Sets the status code of the response to 400 Bad Request. If the responder is
Some
, it is used to finalize the response.
Auto Trait Implementations
impl<R> RefUnwindSafe for BadRequest<R> where
R: RefUnwindSafe,
impl<R> Send for BadRequest<R> where
R: Send,
impl<R> Sync for BadRequest<R> where
R: Sync,
impl<R> Unpin for BadRequest<R> where
R: Unpin,
impl<R> UnwindSafe for BadRequest<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more