pub struct Custom<R>(pub Status, pub R);
Expand description
Creates a response with the given status code and underlying responder.
§Example
use rocket::response::status;
use rocket::http::Status;
let response = status::Custom(Status::ImATeapot, "Hi!");
Tuple Fields§
§0: Status
§1: R
Trait Implementations§
source§impl<'r, R: Responder<'r>> Responder<'r> for Custom<R>
impl<'r, R: Responder<'r>> Responder<'r> for Custom<R>
Sets the status code of the response and then delegates the remainder of the response to the wrapped responder.
impl<R> StructuralPartialEq for Custom<R>
Auto Trait Implementations§
impl<R> Freeze for Custom<R>where
R: Freeze,
impl<R> RefUnwindSafe for Custom<R>where
R: RefUnwindSafe,
impl<R> Send for Custom<R>where
R: Send,
impl<R> Sync for Custom<R>where
R: Sync,
impl<R> Unpin for Custom<R>where
R: Unpin,
impl<R> UnwindSafe for Custom<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)