[][src]Struct rocket::response::status::BadRequest

pub struct BadRequest<R>(pub Option<R>);

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"));

Trait Implementations

impl<'r, R: Responder<'r>> Responder<'r> for BadRequest<R>
[src]

Sets the status code of the response to 400 Bad Request. If the responder is Some, it is used to finalize the response.

impl<R: PartialEq> PartialEq<BadRequest<R>> for BadRequest<R>
[src]

impl<R: Clone> Clone for BadRequest<R>
[src]

Performs copy-assignment from source. Read more

impl<R: Debug> Debug for BadRequest<R>
[src]

Auto Trait Implementations

impl<R> Send for BadRequest<R> where
    R: Send

impl<R> Sync for BadRequest<R> where
    R: Sync

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Typeable for T where
    T: Any
[src]

Get the TypeId of this object.