Struct rocket::response::Content [−][src]
pub struct Content<R>(pub ContentType, pub R);
Expand description
Sets the Content-Type of a Responder
to a chosen value.
Delegates the remainder of the response to the wrapped responder.
Example
Set the Content-Type of a string to PDF.
use rocket::response::content::Content;
use rocket::http::ContentType;
let response = Content(ContentType::PDF, "Hi.");
Tuple Fields
0: ContentType
1: R
Trait Implementations
Overrides the Content-Type of the response to the wrapped ContentType
then
delegates the remainder of the response to the wrapped responder.
Auto Trait Implementations
impl<R> RefUnwindSafe for Content<R> where
R: RefUnwindSafe,
impl<R> UnwindSafe for Content<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more