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§
source§impl<'r, R: Responder<'r>> Responder<'r> for Content<R>
impl<'r, R: Responder<'r>> Responder<'r> for Content<R>
Overrides the Content-Type of the response to the wrapped ContentType
then
delegates the remainder of the response to the wrapped responder.
impl<R> StructuralPartialEq for Content<R>
Auto Trait Implementations§
impl<R> Freeze for Content<R>where
R: Freeze,
impl<R> RefUnwindSafe for Content<R>where
R: RefUnwindSafe,
impl<R> Send for Content<R>where
R: Send,
impl<R> Sync for Content<R>where
R: Sync,
impl<R> Unpin for Content<R>where
R: Unpin,
impl<R> UnwindSafe for Content<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
)