pub struct NotFound<R>(pub R);
Expand description
Sets the status of the response to 404 (Not Found).
The remainder of the response is delegated to the wrapped Responder
.
§Example
use rocket::response::status;
let response = status::NotFound("Sorry, I couldn't find it!");
Tuple Fields§
§0: R
Trait Implementations§
source§impl<'r, R: Responder<'r>> Responder<'r> for NotFound<R>
impl<'r, R: Responder<'r>> Responder<'r> for NotFound<R>
Sets the status code of the response to 404 Not Found.
impl<R> StructuralPartialEq for NotFound<R>
Auto Trait Implementations§
impl<R> Freeze for NotFound<R>where
R: Freeze,
impl<R> RefUnwindSafe for NotFound<R>where
R: RefUnwindSafe,
impl<R> Send for NotFound<R>where
R: Send,
impl<R> Sync for NotFound<R>where
R: Sync,
impl<R> Unpin for NotFound<R>where
R: Unpin,
impl<R> UnwindSafe for NotFound<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
)