Struct rocket::response::status::NotFound [−][src]
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
Sets the status code of the response to 404 Not Found.
Auto Trait Implementations
impl<R> RefUnwindSafe for NotFound<R> where
R: RefUnwindSafe,
impl<R> UnwindSafe for NotFound<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more