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

pub struct Custom<R>(pub Status, pub R);

Creates a response with the given status code and underyling responder.

Example

use rocket::response::status;
use rocket::http::Status;

let response = status::Custom(Status::ImATeapot, "Hi!");

Trait Implementations

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

Sets the status code of the response and then delegates the remainder of the response to the wrapped responder.

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

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

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

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

impl<R> Sync for Custom<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.